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")
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,
"av_type": "varying_cd10",
"beta_AV": 2.0,
"sigma_decay": 0.1
},
"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,
"self_grav_config": {
"softening_length": 1e-09,
"softening_mode": "plummer",
"type": "none"
},
"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 : 70.17 us (68.1%)
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.12 us (0.6%)
patch tree reduce : 2.22 us (0.4%)
gen split merge : 582.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 529.45 us (97.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.7%)
Info: current particle counts : min = 1536 max = 1536 [Model][rank=0]
Info: Add fcc lattice size : ( 32 8 6 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=1536 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (64.8%)
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.36 us (0.4%)
patch tree reduce : 371.00 ns (0.1%)
gen split merge : 381.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 370.00 ns (0.1%)
LB compute : 639.42 us (98.6%)
LB move op cnt : 0
LB apply : 1954.00 ns (0.3%)
Info: current particle counts : min = 3072 max = 3072 [Model][rank=0]
Info: Add fcc lattice size : ( 48 24 9 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=10368 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (65.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 : 2.58 us (0.6%)
patch tree reduce : 360.00 ns (0.1%)
gen split merge : 391.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 391.00 ns (0.1%)
LB compute : 425.52 us (97.8%)
LB move op cnt : 0
LB apply : 2.44 us (0.6%)
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 : 24.87 us (2.1%)
patch tree reduce : 2.11 us (0.2%)
gen split merge : 551.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.1%)
LB compute : 1092.66 us (93.7%)
LB move op cnt : 0
LB apply : 4.09 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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.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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.232233596270212e-20,0)
sum a = (4.944871268803882e-17,1.839952100020049e-17,2.639372955143343e-16)
sum e = 1.1963511454089317
sum de = -5.689893001203927e-16
Info: CFL hydro = 1.6959368633748006e-05 sink sink = inf [SPH][rank=0]
Info: cfl dt = 1.6959368633748006e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.0367e+04 | 13440 | 1 | 6.599e-01 | 0.0% | 1.1% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
<shamrock.model_sph.TimestepLog object at 0x7f466cc6a4b0>
Plotting functions
164 import copy
165
166 import matplotlib
167 import matplotlib.pyplot as plt
168
169
170 def plot_state(iplot):
171
172 pixel_x = 1080
173 pixel_y = 1080
174 radius = 0.5
175 center = (0.0, 0.0, 0.0)
176 aspect = pixel_x / pixel_y
177 pic_range = [-radius * aspect, radius * aspect, -radius, radius]
178 delta_x = (radius * 2 * aspect, 0.0, 0.0)
179 delta_y = (0.0, radius * 2, 0.0)
180
181 def _render(field, field_type, center):
182 # Helper to reduce code duplication
183 return model.render_cartesian_slice(
184 field,
185 field_type,
186 center=center,
187 delta_x=delta_x,
188 delta_y=delta_y,
189 nx=pixel_x,
190 ny=pixel_y,
191 )
192
193 arr_rho = _render("rho", "f64", center)
194 arr_alpha = _render("alpha_AV", "f64", center)
195 arr_vel = _render("vxyz", "f64_3", center)
196
197 vy_range = np.abs(arr_vel[:, :, 1]).max()
198
199 my_cmap = copy.copy(matplotlib.colormaps.get_cmap("gist_heat"))
200 my_cmap.set_bad(color="black")
201
202 my_cmap2 = copy.copy(matplotlib.colormaps.get_cmap("nipy_spectral"))
203 my_cmap2.set_bad(color="black")
204
205 # rho plot
206 fig = plt.figure(dpi=200)
207 im0 = plt.imshow(arr_rho, cmap=my_cmap, origin="lower", extent=pic_range, vmin=1, vmax=3)
208
209 cbar0 = plt.colorbar(im0, extend="both")
210 cbar0.set_label(r"$\rho$ [code unit]")
211
212 plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
213 plt.xlabel("x")
214 plt.ylabel("y")
215 plt.savefig(os.path.join(dump_folder, f"{sim_name}_rho_{iplot:04}.png"))
216
217 plt.close(fig)
218
219 # alpha plot
220 fig = plt.figure(dpi=200)
221 im0 = plt.imshow(
222 arr_alpha, cmap=my_cmap2, origin="lower", norm="log", extent=pic_range, vmin=1e-6, vmax=1
223 )
224
225 cbar0 = plt.colorbar(im0, extend="both")
226 cbar0.set_label(r"$\alpha_{AV}$ [code unit]")
227
228 plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
229 plt.xlabel("x")
230 plt.ylabel("y")
231 plt.savefig(os.path.join(dump_folder, f"{sim_name}_alpha_{iplot:04}.png"))
232
233 plt.close(fig)
234
235 # vy plot
236 fig = plt.figure(dpi=200)
237 im1 = plt.imshow(
238 arr_vel[:, :, 1],
239 cmap=my_cmap,
240 origin="lower",
241 extent=pic_range,
242 vmin=-vy_range,
243 vmax=vy_range,
244 )
245
246 cbar1 = plt.colorbar(im1, extend="both")
247 cbar1.set_label(r"$v_y$ [code unit]")
248
249 plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
250 plt.xlabel("x")
251 plt.ylabel("y")
252 plt.savefig(os.path.join(dump_folder, f"{sim_name}_vy_{iplot:04}.png"))
253
254 plt.close(fig)
Running the simulation
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1801.33 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1794.02 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1766.06 ms [sph::CartesianRender][rank=0]
---------------- t = 0, dt = 1.6959368633748006e-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 : 16.22 us (2.5%)
patch tree reduce : 1433.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 583.46 us (91.5%)
LB move op cnt : 0
LB apply : 4.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8520833333333333
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4748964994464098e-19,4.5072780872200325e-21)
sum a = (-3.350246115453172e-17,1.0610390443448949e-16,-6.504997320279215e-17)
sum e = 1.1963511508247078
sum de = -2.0469737016526324e-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 | 6.7780e+04 | 13440 | 1 | 1.983e-01 | 0.0% | 1.0% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.30790557415365705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 1.6959368633748006e-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 : 6.65 us (1.4%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 438.98 us (95.6%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8520833333333335
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.2160881413001892e-20,-3.4766754412712006e-20)
sum a = (-5.205531149640055e-17,9.9970730767756e-17,5.492065356882761e-17)
sum e = 1.1963573975888837
sum de = 4.822531263215524e-16
Info: CFL hydro = 0.0009504173631537268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0009504173631537268 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9600e+04 | 13440 | 1 | 1.931e-01 | 0.0% | 0.7% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.749958435788788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0005935880319732287, dt = 0.0009504173631537268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1202.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 364.36 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 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.8520833333333337
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.0780969336054974e-19,5.2145452378904793e-20)
sum a = (4.473383543173744e-17,-1.717288626685379e-17,-1.117387577408009e-17)
sum e = 1.1963671337333193
sum de = 3.2959746043559335e-16
Info: CFL hydro = 0.0011834233920238948 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0011834233920238948 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8686e+04 | 13440 | 1 | 1.957e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.485880142218672 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0015440053951269554, dt = 0.0011834233920238948 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 325.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.8520833333333333
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-9.583083854271088e-20,-7.973425238123992e-21)
sum a = (1.3761308414733283e-17,-7.298476663412862e-17,-3.269748211077296e-17)
sum e = 1.196373346294371
sum de = 6.83481049534862e-16
Info: CFL hydro = 0.0013321235052401242 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013321235052401242 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7828e+04 | 13440 | 1 | 1.981e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.50068981573742 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00272742878715085, dt = 0.0013321235052401242 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.56 us (1.7%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 375.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.4019947682662363e-19,-4.814002279918992e-20)
sum a = (2.3900211132552095e-17,-2.1466107833567238e-17,4.6439624357797695e-17)
sum e = 1.1963750600813956
sum de = -2.42861286636753e-16
Info: CFL hydro = 0.001451745726193952 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001451745726193952 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6685e+04 | 13440 | 1 | 2.015e-01 | 0.0% | 0.6% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.79435908485813 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004059552292390974, dt = 0.001451745726193952 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.97 us (2.0%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 332.49 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.583083854271088e-20,6.019374545964028e-20)
sum a = (-6.7464910334068465e-18,-7.973125766753546e-18,3.33778810644262e-17)
sum e = 1.1963737856849517
sum de = -2.498001805406602e-16
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012118974700471498
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,6.977682931391137e-20)
sum a = (1.8112028484572358e-17,1.1285039546789633e-16,1.8552850341868828e-17)
sum e = 1.1963492184928974
sum de = 3.2439329000766293e-16
Info: CFL hydro = 0.0007674045592355255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0007674045592355255 cfl multiplier : 0.4565432098765432 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7468e+04 | 13440 | 1 | 2.831e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.45830150576335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0055112980185849265, dt = 0.0007674045592355255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1323.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 384.01 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.9645321901255733e-19,7.591599240805377e-20)
sum a = (-6.324835343818918e-19,8.157120976755551e-17,2.795385560290876e-17)
sum e = 1.196356210780035
sum de = 1.0061396160665481e-16
Info: CFL hydro = 0.0010660932319456464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010660932319456464 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 | 6.8105e+04 | 13440 | 1 | 1.973e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.999287306853098 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.006278702577820452, dt = 0.0010660932319456464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1273.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 346.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.899820375075184e-19,1.176922485852668e-19)
sum a = (2.5414338381526927e-17,-4.937204801720465e-17,4.42834304905867e-17)
sum e = 1.1963596526803164
sum de = 9.020562075079397e-17
Info: CFL hydro = 0.0012616150352869706 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012616150352869706 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 | 6.7844e+04 | 13440 | 1 | 1.981e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.37348488783436 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007344795809766098, dt = 0.0012616150352869706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 332.07 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.197885481783886e-19,1.7743678698923813e-19)
sum a = (6.401500014653087e-18,-2.6679305450290712e-17,4.63054611838379e-17)
sum e = 1.1963603867261239
sum de = -9.194034422677078e-17
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01022440907316986
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.187312890703316e-20,1.6156480435560163e-19)
sum a = (-4.9257051010953396e-17,-7.973125766753546e-18,5.449899787923968e-17)
sum e = 1.1963498436196307
sum de = 3.469446951953614e-18
Info: CFL hydro = 0.0006909728549565851 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0006909728549565851 cfl multiplier : 0.4194878829446731 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.8037e+04 | 13440 | 1 | 2.798e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23326707992528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00860641084505307, dt = 0.0006909728549565851 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1343.00 ns (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 375.78 us (95.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.5812088359547295e-19,2.2849665565027627e-19)
sum a = (1.3128824880351392e-17,1.778620363352714e-17,6.2625452987661565e-18)
sum e = 1.1963529770256194
sum de = -2.949029909160572e-17
Info: CFL hydro = 0.0010028304874655529 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010028304874655529 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 | 6.7967e+04 | 13440 | 1 | 1.977e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.579512575226333 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.009297383700009654, dt = 0.0010028304874655529 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 359.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.197885481783886e-19,1.8941564180707699e-19)
sum a = (-3.173917372534585e-17,-4.13989222504511e-17,-1.566834210173323e-18)
sum e = 1.1963549136684803
sum de = 1.1709383462843448e-16
Info: CFL hydro = 0.0012050701391501295 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012050701391501295 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 | 6.7288e+04 | 13440 | 1 | 1.997e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.074630788250794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010300214187475207, dt = 0.0012050701391501295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 334.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.922840575552682e-19,1.9368310883593208e-19)
sum a = (1.717288626685379e-17,3.572573660872262e-17,3.572573660872262e-17)
sum e = 1.1963555237912649
sum de = -4.85722573273506e-17
Info: CFL hydro = 0.001334352407441995 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001334352407441995 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 | 6.6957e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.61275051429158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.011505284326625337, dt = 0.001334352407441995 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.43 us (1.6%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 379.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
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.1981198590734307e-19)
sum a = (2.3296476849733017e-17,-3.357912582536589e-17,-1.7479544950190467e-17)
sum e = 1.196355409263576
sum de = 5.204170427930421e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011128264207043813
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.9707559948240377e-19,2.3313846189218884e-19)
sum a = (1.1681779218356457e-17,-2.085279046689389e-17,-5.0838259846908124e-18)
sum e = 1.196350062049739
sum de = -1.1275702593849246e-17
Info: CFL hydro = 0.0007116148707606398 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0007116148707606398 cfl multiplier : 0.4426654699204615 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7173e+04 | 13440 | 1 | 2.849e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.86036907349329 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012839636734067333, dt = 0.0007116148707606398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 346.06 us (90.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
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.7102159025360423e-19)
sum a = (-3.4211609359747787e-18,5.136532945889304e-18,-8.952037782467337e-17)
sum e = 1.1963515298236989
sum de = -3.642919299551295e-17
Info: CFL hydro = 0.0010138488734798472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010138488734798472 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 | 6.5195e+04 | 13440 | 1 | 2.061e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.426940616691713 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013551251604827973, dt = 0.0010138488734798472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.8%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 328.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.468581601632985e-19,8.31033052987571e-20)
sum a = (5.666477483030495e-17,-5.884013486522448e-17,-5.4805656562576356e-17)
sum e = 1.1963528909155183
sum de = -4.163336342344337e-17
Info: CFL hydro = 0.0012140161439088894 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0012140161439088894 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 | 6.6321e+04 | 13440 | 1 | 2.026e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.010669065707383 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01456510047830782, dt = 0.0012140161439088894 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 332.75 us (94.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
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,4.8963569067916345e-20)
sum a = (5.3281946229747254e-17,-2.614265275445153e-17,-4.0325616858772744e-17)
sum e = 1.1963542529966902
sum de = 1.9992688060632702e-16
Info: CFL hydro = 0.0013514695226909492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013514695226909492 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 | 6.6107e+04 | 13440 | 1 | 2.033e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.49695770285849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015779116622216708, dt = 0.0013514695226909492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.9%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 324.92 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-2.8749251562813265e-19,2.755136608102938e-20)
sum a = (-1.4144631768904126e-17,2.3996041971094807e-17,1.1435014809108978e-16)
sum e = 1.1963558552731723
sum de = -1.0451708942760263e-16
Info: CFL hydro = 0.0014501049557003503 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0014501049557003503 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 | 6.6698e+04 | 13440 | 1 | 2.015e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.144742063549252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01713058614490766, dt = 0.0014501049557003503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.78 us (1.9%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 329.71 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8640624999999995
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.2458009010552416e-19,2.880914583690246e-19)
sum a = (2.6755970121124878e-17,-3.8255670746250184e-17,1.0044269764757885e-17)
sum e = 1.1963577746442515
sum de = 4.466912950640278e-17
Info: CFL hydro = 0.001538268626854653 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001538268626854653 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 | 6.5097e+04 | 13440 | 1 | 2.065e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.284946733225944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018580691100608008, dt = 0.0014193088993919925 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 364.15 us (94.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.8632440476190475
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.887372765678255e-19,2.398765677272232e-19)
sum a = (-3.6760709664983895e-17,2.1466107833567238e-17,2.5874026935161495e-17)
sum e = 1.1963587059762277
sum de = -6.678685382510707e-17
Info: CFL hydro = 0.0016009811815894095 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016009811815894095 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 | 6.6058e+04 | 13440 | 1 | 2.035e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.113578590264265 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 1634.3519147230002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1806.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1790.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1722.28 ms [sph::CartesianRender][rank=0]
---------------- t = 0.02, dt = 0.0016009811815894095 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1383.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 580.19 us (95.8%)
LB move op cnt : 0
LB apply : 4.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.8632440476190473
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.31238773442199e-19,2.8749251562813265e-19)
sum a = (-1.4949610812662899e-18,2.1466107833567237e-18,-7.080221928631837e-17)
sum e = 1.1963620169444162
sum de = 1.8171228410857054e-16
Info: CFL hydro = 0.0016578154489938933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016578154489938933 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 | 6.3845e+04 | 13440 | 1 | 2.105e-01 | 0.0% | 0.6% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.378893697002916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02160098118158941, dt = 0.0016578154489938933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 352.76 us (94.6%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8632440476190475
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,5.462357796934521e-19,1.073604863048808e-19)
sum a = (-6.826988937782723e-17,6.792489835907348e-17,-1.3272571138165458e-17)
sum e = 1.1963641370985911
sum de = -1.5178830414797062e-16
Info: CFL hydro = 0.0017127056318353374 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017127056318353374 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 | 6.6131e+04 | 13440 | 1 | 2.032e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.365801069867157 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.023258796630583303, dt = 0.0017127056318353374 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 342.75 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.04 us (94.3%)
Warning: High interface/patch volume ratio. [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]
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,9.433348169048103e-20)
sum a = (1.4834613806411644e-17,3.403911385037091e-17,4.384260863329023e-18)
sum e = 1.196365933935546
sum de = -9.540979117872439e-17
Info: CFL hydro = 0.0017677005654260574 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0017677005654260574 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 | 6.6354e+04 | 13440 | 1 | 2.026e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.440541246573684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02497150226241864, dt = 0.0017677005654260574 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 324.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
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.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.0062238046984643e-19,1.5183198481610755e-19)
sum a = (1.0311398227195691e-17,-4.2625556983797805e-17,-1.8687013515828623e-19)
sum e = 1.196367391336117
sum de = -9.107298248878237e-17
Info: CFL hydro = 0.0018630452369620511 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018630452369620511 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 | 6.6543e+04 | 13440 | 1 | 2.020e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.507331292650104 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026739202827844696, dt = 0.0018630452369620511 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.3%)
LB compute : 415.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.3061639297235256e-19,1.3715788766425495e-19)
sum a = (-4.5308820462993706e-17,-3.1892503067014186e-17,4.218952666842847e-17)
sum e = 1.1963693011654974
sum de = -7.24247051220317e-17
Info: CFL hydro = 0.0019187593324731917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019187593324731917 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 | 6.6725e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.29798186979826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.028602248064806747, dt = 0.0019187593324731917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 352.89 us (94.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8714285714285714
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-2.1082784479396395e-19,2.547752684069103e-19)
sum a = (1.6789562912682946e-17,8.126455108421884e-18,-2.6832634791959047e-18)
sum e = 1.1963702851256783
sum de = -8.500145032286355e-17
Info: CFL hydro = 0.00196284525791793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00196284525791793 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 | 6.7020e+04 | 13440 | 1 | 2.005e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.4452749069554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030521007397279937, dt = 0.00196284525791793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 356.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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.8703869047619046
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.360303153693346e-19,2.147209726097616e-19)
sum a = (3.327246714202922e-17,-2.315273059191895e-17,-5.447983171153114e-17)
sum e = 1.1963708050166808
sum de = 6.852157730108388e-17
Info: CFL hydro = 0.0019844289087023056 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019844289087023056 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 | 6.7006e+04 | 13440 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.22923990853729 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03248385265519787, dt = 0.0019844289087023056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 351.00 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8796875
Warning: the unit system is not set [sph::Config][rank=0]
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.953022089886824e-20)
sum a = (3.0665868333667483e-18,4.0478946200441076e-17,-3.908939904157177e-17)
sum e = 1.1963707211399641
sum de = -2.8622937353617317e-16
Info: CFL hydro = 0.001991296473513041 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.001991296473513041 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 | 6.6929e+04 | 13440 | 1 | 2.008e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.57579456638578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03446828156390017, dt = 0.001991296473513041 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.13 us (5.9%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 341.62 us (90.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8799851190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.6832634791959046e-19,-2.9048722933259235e-20)
sum a = (1.920450004395926e-17,-6.823155704241015e-18,-3.863899410042103e-17)
sum e = 1.1963702593498284
sum de = 7.19910242530375e-17
Info: CFL hydro = 0.002007812002181356 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002007812002181356 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 | 6.6962e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.71634367026246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03645957803741321, dt = 0.002007812002181356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 338.79 us (94.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8807291666666668
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.2697586106909193e-19,-9.298586052347416e-20)
sum a = (-1.3799640750150368e-18,-2.7675946171134904e-17,1.7460378782481925e-17)
sum e = 1.1963698244142582
sum de = -8.673617379884035e-19
Info: CFL hydro = 0.002023450062050571 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002023450062050571 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 | 6.6969e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.016154832927484 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03846739003959457, dt = 0.001532609960405433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.11 us (2.0%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 327.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.378037058630559e-19,-2.8300044507144307e-20)
sum a = (-2.828926353780825e-17,3.0397541985747896e-17,4.1695997849933506e-17)
sum e = 1.1963622644903944
sum de = 1.5872719805187785e-16
Info: CFL hydro = 0.00203978222265689 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00203978222265689 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 | 6.7835e+04 | 13440 | 1 | 1.981e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.84778408897112 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 1643.089515865 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1806.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1800.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1753.82 ms [sph::CartesianRender][rank=0]
---------------- t = 0.04, dt = 0.00203978222265689 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.9%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.2%)
LB compute : 536.75 us (95.6%)
LB move op cnt : 0
LB apply : 4.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.8632440476190473
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.4019947682662363e-19,7.786255631595259e-20)
sum a = (4.63054611838379e-17,1.93578293856276e-17,7.268769103464621e-18)
sum e = 1.1963686352547114
sum de = -6.158268339717665e-17
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010097879950727754
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4374625781406634e-20,5.749850312562653e-20)
sum a = (-2.7254290481546976e-17,9.889742537607764e-18,-1.6607484319451796e-17)
sum e = 1.1963529970104605
sum de = 1.9949319973733282e-17
Info: CFL hydro = 0.0010325024709288981 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0010325024709288981 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 | 4.7182e+04 | 13440 | 1 | 2.849e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.77911068561646 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04203978222265689, dt = 0.0010325024709288981 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 343.37 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.863244047619048
Warning: the unit system is not set [sph::Config][rank=0]
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.2460352783447863e-21)
sum a = (2.2232754541908927e-18,2.2999401250250614e-19,-1.404400938843428e-17)
sum e = 1.196356914477591
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.0013857563958165813 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0013857563958165813 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 | 6.8318e+04 | 13440 | 1 | 1.967e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.894363535326082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04307228469358579, dt = 0.0013857563958165813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 354.32 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8804315476190476
Warning: the unit system is not set [sph::Config][rank=0]
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,-8.984141113379145e-21)
sum a = (7.973125766753546e-18,1.0273065891778608e-17,-5.2869873624013596e-17)
sum e = 1.1963595826117637
sum de = -2.7755575615628914e-17
Info: CFL hydro = 0.0016259299273677563 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0016259299273677563 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 | 6.7355e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.00102999007066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04445804108940237, dt = 0.0016259299273677563 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 358.86 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.126949862035032e-19,-1.0496471534131302e-19)
sum a = (-3.434577253370758e-17,9.084763493848992e-17,3.1145022526381037e-18)
sum e = 1.1963613907704862
sum de = 5.0306980803327406e-17
Info: CFL hydro = 0.0018004902760844013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0018004902760844013 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 | 6.7918e+04 | 13440 | 1 | 1.979e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.579595118988298 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04608397101677013, dt = 0.0018004902760844013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.9%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 334.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.558188635477232e-19,-4.477096988167274e-20)
sum a = (3.909898212542604e-18,-1.5256269495999572e-17,-5.76422493834406e-18)
sum e = 1.196362425288552
sum de = 7.632783294297951e-17
Info: CFL hydro = 0.0019066570317067988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019066570317067988 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 | 6.6925e+04 | 13440 | 1 | 2.008e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.276359080073306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04788446129285453, dt = 0.0019066570317067988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 341.85 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.504049411507412e-19,-7.644006730633423e-20)
sum a = (4.216556895879279e-19,-1.8016197646029646e-17,-2.3543241258980496e-17)
sum e = 1.1963626417608992
sum de = 2.862293735361732e-17
Info: CFL hydro = 0.0019644969798707558 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0019644969798707558 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 | 6.7091e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.26399322244643 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.049791118324561325, dt = 0.0019644969798707558 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 348.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,6.660243278718407e-19,-1.3274068495017687e-19)
sum a = (1.092471559386904e-17,6.033509594649078e-17,-1.79155752655598e-17)
sum e = 1.196362514384763
sum de = -8.239936510889834e-17
Info: CFL hydro = 0.002003189919250454 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002003189919250454 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 | 6.6867e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.185885652644856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05175561530443208, dt = 0.002003189919250454 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 341.65 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.8811011904761907
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,4.360303153693346e-19,-1.7496614818305885e-19)
sum a = (5.132699712347595e-17,-1.5332934166833741e-18,-4.34437127678562e-17)
sum e = 1.196362613584829
sum de = -1.5439038936193583e-16
Info: CFL hydro = 0.0020297314737005613 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0020297314737005613 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 | 6.7120e+04 | 13440 | 1 | 2.002e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.01460132720927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05375880522368254, dt = 0.0020297314737005613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 341.92 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.3416317395979523e-19,-2.7379170043022945e-19)
sum a = (2.068029495751701e-17,8.27978445009022e-18,-1.3013827874100138e-17)
sum e = 1.1963629705465162
sum de = -2.42861286636753e-17
Info: CFL hydro = 0.00209197366094061 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00209197366094061 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 | 6.6894e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.369042378819884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.055788536697383095, dt = 0.00209197366094061 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 346.75 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.976979799522502e-19,-2.8045493842265234e-19)
sum a = (3.804484290145622e-17,-5.4470248627676867e-17,-2.7814900887021833e-17)
sum e = 1.1963639952513296
sum de = 3.469446951953614e-18
Info: CFL hydro = 0.0021126638689438803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021126638689438803 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 | 6.6386e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.199305798760754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05788051035832371, dt = 0.0021126638689438803 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 343.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.20410928648235e-19,-3.6116247275784166e-19)
sum a = (1.680872908039149e-17,-6.1331736667334966e-18,6.305669176110376e-18)
sum e = 1.1963648155967699
sum de = 2.42861286636753e-17
Info: CFL hydro = 0.0021197262929455187 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021197262929455187 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 | 6.6408e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.579550630761354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05999317422726759, dt = 6.825772732407809e-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 : 6.09 us (1.8%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 328.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.389547158869308e-19,-3.240280228225412e-19)
sum a = (-4.366053004005908e-17,1.0311398227195691e-17,-5.873711671379107e-17)
sum e = 1.1963538312524067
sum de = -5.724587470723463e-17
Info: CFL hydro = 0.0021273616976012254 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021273616976012254 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 | 7.0244e+04 | 13440 | 1 | 1.913e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.12842952329926616 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 43 [SPH][rank=0]
Info: time since start : 1652.072789749 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1803.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1801.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1747.24 ms [sph::CartesianRender][rank=0]
---------------- t = 0.06, dt = 0.0021273616976012254 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.44 us (1.8%)
patch tree reduce : 1303.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 548.12 us (95.6%)
LB move op cnt : 0
LB apply : 4.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.39 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.855059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.0062238046984643e-19,-4.536242583830354e-19)
sum a = (-2.6909299462793217e-17,-1.9147001540833634e-17,-1.1576365295959475e-17)
sum e = 1.1963651775169422
sum de = -3.0791341698588326e-17
Info: CFL hydro = 0.0021381165714732895 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021381165714732895 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 | 6.3865e+04 | 13440 | 1 | 2.104e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.392309584886874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.062127361697601226, dt = 0.0021381165714732895 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 331.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8549107142857149
Warning: the unit system is not set [sph::Config][rank=0]
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,-4.2307817859754627e-19)
sum a = (3.706736834832057e-17,9.745996279793697e-18,1.1176271545043658e-17)
sum e = 1.1963660988344396
sum de = -8.239936510889834e-17
Info: CFL hydro = 0.002142340237981177 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002142340237981177 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 | 6.6578e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.129687892289844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06426547826907451, dt = 0.002142340237981177 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 335.69 us (94.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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.8808035714285718
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.366526958391809e-19,-3.903609313763239e-19)
sum a = (-4.1245592908782763e-17,9.6789146928138e-18,2.1878180439300897e-17)
sum e = 1.1963664137399657
sum de = 7.45931094670027e-17
Info: CFL hydro = 0.0021833481476595602 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021833481476595602 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 | 6.6747e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.301963748682994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0664078185070557, dt = 0.0021833481476595602 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.82 us (1.3%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 340.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.8799107142857145
Warning: the unit system is not set [sph::Config][rank=0]
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,-3.0396344100266107e-19)
sum a = (-4.11689282379486e-17,-1.4642952129326224e-17,3.089346657520642e-17)
sum e = 1.1963669371966221
sum de = -1.5829351718288365e-17
Info: CFL hydro = 0.0021807942296033964 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021807942296033964 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 | 6.6779e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.05412238866975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06859116665471526, dt = 0.0021807942296033964 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 348.23 us (94.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8802083333333335
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.324835343818918e-19,-2.2655009174237746e-19)
sum a = (-8.433113791758558e-18,4.06706078775265e-17,-8.109924288773266e-17)
sum e = 1.196366516624192
sum de = -1.5395670849294163e-17
Info: CFL hydro = 0.0021706605824949434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021706605824949434 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 | 6.7172e+04 | 13440 | 1 | 2.001e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.23781468118245 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07077196088431865, dt = 0.0021706605824949434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 331.11 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
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.8805803571428574
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.252024705753706e-19,-5.285669688371398e-19)
sum a = (2.828926353780825e-17,6.34783474506917e-17,5.922705187584068e-17)
sum e = 1.1963657989461756
sum de = 2.168404344971009e-17
Info: CFL hydro = 0.002173892458537435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002173892458537435 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 | 6.6820e+04 | 13440 | 1 | 2.011e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.85106878017621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0729426214668136, dt = 0.002173892458537435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.8%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 337.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8804315476190478
Warning: the unit system is not set [sph::Config][rank=0]
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.223574925561339e-19)
sum a = (-8.210786246339469e-17,-1.8342022497074863e-17,1.290961183718494e-17)
sum e = 1.1963652086316947
sum de = 7.090682208055199e-17
Info: CFL hydro = 0.0021794331189129434 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021794331189129434 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 | 6.6399e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.663512995579126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07511651392535104, dt = 0.0021794331189129434 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.32 us (2.0%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 344.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8804315476190478
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.5395172213818386e-19,-2.442189025986898e-19)
sum a = (4.297054800255156e-17,1.797786531061256e-17,7.664834964447941e-17)
sum e = 1.1963647050870467
sum de = 8.673617379884035e-19
Info: CFL hydro = 0.0021603612805719693 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021603612805719693 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 | 6.6397e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.76087616934218 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07729594704426399, dt = 0.0021603612805719693 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.5%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 390.36 us (95.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805803571428574
Warning: the unit system is not set [sph::Config][rank=0]
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,-2.0813260245995022e-20)
sum a = (-1.1518866792833848e-17,4.772375759427002e-18,-3.386901411195759e-17)
sum e = 1.196364100967049
sum de = -1.7780915628762273e-17
Info: CFL hydro = 0.0021712000242031996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0021712000242031996 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 | 6.6230e+04 | 13440 | 1 | 2.029e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.32528822518153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07945630832483595, dt = 0.0005436916751640486 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 338.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.8805803571428574
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.922840575552682e-19,-1.6485898943050732e-19)
sum a = (-2.0891122802310974e-17,-3.5879065950390954e-17,6.395031433051454e-17)
sum e = 1.1963552796479424
sum de = -5.117434254131581e-17
Info: CFL hydro = 0.002175975333812554 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002175975333812554 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 | 6.9519e+04 | 13440 | 1 | 1.933e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.124235133962395 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 1660.7948488220002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1793.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1786.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1727.18 ms [sph::CartesianRender][rank=0]
---------------- t = 0.08, dt = 0.002175975333812554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.08 us (4.2%)
patch tree reduce : 1272.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 597.41 us (93.6%)
LB move op cnt : 0
LB apply : 4.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8652529761904766
Warning: the unit system is not set [sph::Config][rank=0]
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,-6.288898779365402e-21)
sum a = (2.913257491698411e-17,4.446550908381785e-18,5.916116817434257e-17)
sum e = 1.196363799944762
sum de = 2.47198095326695e-17
Info: CFL hydro = 0.002184955513788526 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002184955513788526 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 | 6.6121e+04 | 13440 | 1 | 2.033e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.5385578013397 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08217597533381256, dt = 0.002184955513788526 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 362.55 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8644345238095241
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.576860049572625e-19,1.2345707246635175e-19)
sum a = (-5.761350013187778e-17,-1.0124528092037405e-17,1.441295811682372e-17)
sum e = 1.1963636943170142
sum de = 4.0766001685454967e-17
Info: CFL hydro = 0.0022023072660140603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022023072660140603 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 | 6.6376e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.846762662326725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08436093084760109, dt = 0.0022023072660140603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.4%)
LB compute : 359.27 us (94.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
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.8796130952380958
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,3.8332335417084355e-20,1.1559594899214502e-19)
sum a = (-4.4848832437988697e-17,-1.334444426707249e-17,-3.044545740501925e-17)
sum e = 1.1963636843311105
sum de = 3.0791341698588326e-17
Info: CFL hydro = 0.0022230188414489784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022230188414489784 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 | 6.6474e+04 | 13440 | 1 | 2.022e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.213335865601664 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08656323811361515, dt = 0.0022230188414489784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1282.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 349.36 us (94.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8804315476190478
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.5812088359547295e-19,-1.5123304207521563e-20)
sum a = (2.3976875803386265e-17,7.556261619092753e-18,-1.2247181165758451e-17)
sum e = 1.1963637411757615
sum de = 3.426078865054194e-17
Info: CFL hydro = 0.002237227422273784 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002237227422273784 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 | 6.5836e+04 | 13440 | 1 | 2.041e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.202277300574494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08878625695506412, dt = 0.002237227422273784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.7%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 360.65 us (94.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.7728705130401514e-19,-1.7593943013700826e-20)
sum a = (-2.5462253800798282e-17,-5.864847318813906e-18,6.533746571842028e-17)
sum e = 1.1963637127811364
sum de = -1.3444106938820255e-17
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 | 6.6082e+04 | 13440 | 1 | 2.034e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.60036665599067 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0910234843773379, 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 : 6.38 us (1.7%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 362.97 us (94.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.871949404761905
Warning: the unit system is not set [sph::Config][rank=0]
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,2.2228262471352237e-19)
sum a = (-1.2103434907944385e-17,1.583125452725584e-17,2.4935184188813372e-17)
sum e = 1.1963636492528038
sum de = 7.806255641895632e-18
Info: CFL hydro = 0.002281046657683647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002281046657683647 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 | 6.6099e+04 | 13440 | 1 | 2.033e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.988597181060214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09328208093455032, dt = 0.002281046657683647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.4%)
LB compute : 333.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.871949404761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.510273216205876e-19,2.296571072107544e-19)
sum a = (8.001875018316358e-18,-3.718236535457182e-18,2.965964452896902e-17)
sum e = 1.1963634522445172
sum de = 3.9898639947466563e-17
Info: CFL hydro = 0.0022334184074738134 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022334184074738134 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 | 6.5561e+04 | 13440 | 1 | 2.050e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.057282789837394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09556312759223397, dt = 0.0022334184074738134 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 341.76 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8800595238095246
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.2644723151506344e-19,3.0201687709476227e-19)
sum a = (7.283143729246027e-19,-6.94773579434654e-17,5.058909966669708e-17)
sum e = 1.1963626180420228
sum de = -2.3852447794681098e-17
Info: CFL hydro = 0.00225216374229395 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00225216374229395 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 | 6.5045e+04 | 13440 | 1 | 2.066e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.912570530065516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09779654599970779, dt = 0.002203454000292218 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 329.08 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805803571428577
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.0110153466255999e-18,4.444903815844332e-19)
sum a = (3.409661235349653e-17,-2.828926353780825e-17,1.1154709606371547e-17)
sum e = 1.196361993351638
sum de = -9.020562075079397e-17
Info: CFL hydro = 0.002272035341470663 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002272035341470663 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 | 6.3564e+04 | 13440 | 1 | 2.114e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.51595777954897 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 1669.093712542 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1826.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1806.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1754.63 ms [sph::CartesianRender][rank=0]
---------------- t = 0.1, dt = 0.002272035341470663 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.62 us (1.5%)
patch tree reduce : 1523.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 695.31 us (96.3%)
LB move op cnt : 0
LB apply : 5.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 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.86421130952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.126949862035032e-19,4.2090701116181295e-19)
sum a = (-3.3559959657657353e-17,5.519856300060147e-17,-4.988953454533529e-17)
sum e = 1.1963621132603008
sum de = -3.859759734048396e-17
Info: CFL hydro = 0.002262780169241508 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002262780169241508 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 | 6.3020e+04 | 13440 | 1 | 2.133e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.352589421807394 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10227203534147067, dt = 0.002262780169241508 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 324.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.86421130952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.018671414095393e-19,2.450424488674162e-19)
sum a = (5.8840134865224486e-18,2.798260485447158e-17,-4.182057794003903e-17)
sum e = 1.1963619874807638
sum de = 3.0357660829594124e-17
Info: CFL hydro = 0.0022477613208550366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022477613208550366 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 | 6.5818e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.89260003369578 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10453481551071217, dt = 0.0022477613208550366 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 369.42 us (94.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8645833333333337
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.354079348994881e-20,1.4883727111164783e-19)
sum a = (6.338251661214898e-17,-2.89025809044816e-17,3.472430434595129e-17)
sum e = 1.1963620911647739
sum de = 1.713039432527097e-17
Info: CFL hydro = 0.0022387444116306063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022387444116306063 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 | 6.5669e+04 | 13440 | 1 | 2.047e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.53809779928629 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10678257683156721, dt = 0.0022387444116306063 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 337.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8809523809523814
Warning: the unit system is not set [sph::Config][rank=0]
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,3.1534335307960803e-19)
sum a = (1.2917997035557428e-17,3.9942293504601897e-17,4.3904898678342995e-17)
sum e = 1.1963624659851526
sum de = 1.214306433183765e-17
Info: CFL hydro = 0.002235339392373772 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002235339392373772 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 | 6.5833e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.47768766353191 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10902132124319781, dt = 0.002235339392373772 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.31 us (1.7%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 349.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8808035714285718
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.0843207383039619e-19,4.31388509127422e-19)
sum a = (1.514127248974832e-18,2.0546131783557215e-17,-6.8519049558038286e-18)
sum e = 1.196363016454243
sum de = 1.5178830414797062e-18
Info: CFL hydro = 0.0022370742306706266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022370742306706266 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 | 6.5667e+04 | 13440 | 1 | 2.047e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.3181661212425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11125666063557159, dt = 0.0022370742306706266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1093.00 ns (0.3%)
LB compute : 361.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
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.8806547619047622
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,0,3.448412830685362e-19)
sum a = (1.320548955118556e-17,6.470498218403839e-17,-6.645868652937e-18)
sum e = 1.1963636387177996
sum de = -9.324138683375338e-18
Info: CFL hydro = 0.002310979609685756 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002310979609685756 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 | 6.5445e+04 | 13440 | 1 | 2.054e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.21577514167006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11349373486624222, dt = 0.002310979609685756 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1143.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 389.81 us (95.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805059523809526
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0757011626419296e-18,3.3690529175171796e-19)
sum a = (-2.208900828409486e-17,5.0905341433888024e-17,5.032796063166819e-17)
sum e = 1.196364689536236
sum de = -8.673617379884035e-19
Info: CFL hydro = 0.0023188786563303936 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023188786563303936 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 | 6.5654e+04 | 13440 | 1 | 2.047e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.640404135487884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11580471447592797, dt = 0.0023188786563303936 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 372.30 us (94.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.880654761904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.372750763090274e-19,5.206309775203214e-19)
sum a = (-1.671289824184878e-17,-1.0273065891778608e-17,-2.599171918374676e-17)
sum e = 1.1963650753466852
sum de = -4.466912950640278e-17
Info: CFL hydro = 0.002276407096007442 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002276407096007442 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 | 6.1743e+04 | 13440 | 1 | 2.177e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.350118978183204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11812359313225836, dt = 0.0018764068677416534 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1263.00 ns (0.1%)
gen split merge : 832.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.1%)
LB compute : 1236.44 us (98.3%)
LB move op cnt : 0
LB apply : 4.26 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.880505952380952
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.018671414095393e-19,4.1252181278932577e-19)
sum a = (5.46235779693452e-18,2.5912658741949025e-17,-2.7287831275036924e-18)
sum e = 1.1963620813292217
sum de = -1.452830911130576e-17
Info: CFL hydro = 0.0022812681403103796 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022812681403103796 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.7737e+04 | 13440 | 1 | 2.815e-01 | 0.0% | 0.2% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.99316114392113 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 1677.553418442 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1830.41 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1821.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1754.20 ms [sph::CartesianRender][rank=0]
---------------- t = 0.12000000000000001, dt = 0.0022812681403103796 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.35 us (2.3%)
patch tree reduce : 1884.00 ns (0.3%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.2%)
LB compute : 546.44 us (94.7%)
LB move op cnt : 0
LB apply : 4.36 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8736607142857145
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.8988828659170044e-19,4.153667908085625e-19)
sum a = (1.9338663217919058e-17,-6.593161691738509e-18,2.2586729701776063e-17)
sum e = 1.196364407937157
sum de = 8.456776945386935e-18
Info: CFL hydro = 0.002317079434052914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002317079434052914 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 | 6.5820e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.219375937948136 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12228126814031039, dt = 0.002317079434052914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1363.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 339.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.855133928571429
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.3404338541161685e-18,4.996679815891035e-19)
sum a = (-9.008098823014824e-19,-3.0665868333667484e-19,-3.2735814446190036e-17)
sum e = 1.1963641152987434
sum de = -1.5395670849294163e-17
Info: CFL hydro = 0.0023210631200026605 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023210631200026605 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 | 6.5738e+04 | 13440 | 1 | 2.044e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.80022837107478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1245983475743633, dt = 0.0023210631200026605 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 356.94 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8541666666666665
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.2446030155734576e-18,3.4768626108777293e-19)
sum a = (-3.1528345880551885e-17,-2.2692742566913938e-17,-5.724215563252478e-17)
sum e = 1.1963633827414426
sum de = -3.642919299551295e-17
Info: CFL hydro = 0.0023111832880820947 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023111832880820947 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 | 6.6519e+04 | 13440 | 1 | 2.020e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.35603476836302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12691941069436596, dt = 0.0023111832880820947 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 347.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8781249999999998
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.630061764384264e-19,1.8432462850949548e-19)
sum a = (9.985573376150474e-18,-4.50788264504912e-17,1.7563396933915338e-17)
sum e = 1.1963625276752836
sum de = 1.0842021724855044e-17
Info: CFL hydro = 0.0022888957729430373 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022888957729430373 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 | 6.6487e+04 | 13440 | 1 | 2.021e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.159634289150766 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12923059398244807, dt = 0.0022888957729430373 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.8%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 342.93 us (94.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.8777529761904757
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,3.9395458782167554e-19,3.029152912061002e-19)
sum a = (-2.430270065443148e-17,-2.2692742566913938e-17,-2.4127809374091032e-17)
sum e = 1.1963617330250658
sum de = 1.6046192152785466e-17
Info: CFL hydro = 0.0022695190253598932 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022695190253598932 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 | 6.6734e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.91447723982856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1315194897553911, dt = 0.0022695190253598932 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1162.00 ns (0.3%)
gen split merge : 1853.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 1734.00 ns (0.5%)
LB compute : 338.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8781994047619046
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.971224749403128e-19,1.8881669906618504e-19)
sum a = (3.3329965645154845e-17,-5.519856300060147e-17,2.7311788984672603e-17)
sum e = 1.1963611578317974
sum de = 4.336808689942018e-19
Info: CFL hydro = 0.0023370574029185696 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023370574029185696 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 | 6.6627e+04 | 13440 | 1 | 2.017e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.50301430578256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.133789008780751, dt = 0.0023370574029185696 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1313.00 ns (0.3%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 401.31 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.83 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8793898809523806
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.3655894492336302e-19,3.2312960871120326e-19)
sum a = (-7.620468280916369e-17,-2.5759329400280686e-17,5.832504410805742e-17)
sum e = 1.1963611909520024
sum de = 2.3635607360183997e-17
Info: CFL hydro = 0.0023156011848369427 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023156011848369427 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 | 6.6677e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.73979534402685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13612606618366957, dt = 0.0023156011848369427 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 334.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.880059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.2941850749056866e-19,4.99593113746492e-19)
sum a = (-3.009088330241122e-17,2.2999401250250612e-18,3.080961459148155e-18)
sum e = 1.196361139906967
sum de = 5.833007687972014e-17
Info: CFL hydro = 0.0022980013553271514 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022980013553271514 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 | 6.6316e+04 | 13440 | 1 | 2.027e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.132253419864064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13844166736850652, dt = 0.001558332631493492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 346.99 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.880059523809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.2462696556343313e-19,4.494316591967917e-19)
sum a = (-2.4609359337768156e-17,-1.6866227583517116e-17,6.373948648572058e-17)
sum e = 1.19635877703179
sum de = 3.0140820395097023e-17
Info: CFL hydro = 0.002288637493517105 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002288637493517105 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 | 6.7463e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.159850630530563 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 80 [SPH][rank=0]
Info: time since start : 1686.119949311 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1825.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1820.34 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1757.48 ms [sph::CartesianRender][rank=0]
---------------- t = 0.14, dt = 0.002288637493517105 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.65 us (1.6%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 644.86 us (96.1%)
LB move op cnt : 0
LB apply : 5.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 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.8683035714285716
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-3.7134449935300467e-19,6.327830057523378e-19)
sum a = (1.0138902717818811e-17,-1.7632874291858803e-17,1.1014557005002832e-17)
sum e = 1.1963614781244118
sum de = 2.3852447794681098e-17
Info: CFL hydro = 0.002276489143385358 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002276489143385358 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 | 6.3559e+04 | 13440 | 1 | 2.115e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.963415862916534 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1422886374935171, dt = 0.002276489143385358 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 336.53 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.36 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.8633184523809527
Warning: the unit system is not set [sph::Config][rank=0]
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,5.916056923160167e-19)
sum a = (-2.0239473100220538e-17,-5.167198814222971e-17,4.229494059082545e-17)
sum e = 1.1963620799665682
sum de = 2.8189256484623115e-18
Info: CFL hydro = 0.0023719443218345156 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023719443218345156 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 | 6.6357e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.4627991690442 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14456512663690246, dt = 0.0023719443218345156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.7%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 338.67 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8633928571428573
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.809275832072758e-19,7.372985140379819e-19)
sum a = (9.410588344894209e-18,-1.0733053916783619e-18,1.1631468028121535e-18)
sum e = 1.1963631779773212
sum de = -1.0842021724855044e-17
Info: CFL hydro = 0.002355808051284087 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002355808051284087 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 | 6.6863e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.480604131255404 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14693707095873698, dt = 0.002355808051284087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 367.50 us (94.8%)
LB move op cnt : 0
LB apply : 4.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8635416666666669
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.583083854271089e-21,7.012870817418538e-19)
sum a = (-1.5620426682461874e-18,1.0579724575115282e-17,-4.697867282460044e-17)
sum e = 1.196363772521104
sum de = 4.2934406030425976e-17
Info: CFL hydro = 0.0023386387538462104 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023386387538462104 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 | 6.5514e+04 | 13440 | 1 | 2.051e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.34050703690256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14929287901002106, dt = 0.0023386387538462104 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 342.11 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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.880059523809524
Warning: the unit system is not set [sph::Config][rank=0]
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,5.336579821347213e-19)
sum a = (-6.133173666733497e-17,-5.61185390506115e-17,1.0565349949333876e-17)
sum e = 1.1963642176693796
sum de = -2.5370330836160804e-17
Info: CFL hydro = 0.0023486702581575632 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023486702581575632 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 | 6.7617e+04 | 13440 | 1 | 1.988e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.35682392438865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15163151776386727, dt = 0.0023486702581575632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1152.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 472.24 us (96.2%)
LB move op cnt : 0
LB apply : 4.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8718005952380958
Warning: the unit system is not set [sph::Config][rank=0]
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,6.284406708808712e-19)
sum a = (3.028254497949664e-18,-3.434577253370758e-17,-3.972188257595366e-17)
sum e = 1.196364638353329
sum de = -2.6454533008646308e-17
Info: CFL hydro = 0.002353147657089335 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002353147657089335 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 | 6.6571e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.88052880876259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15398018802202484, dt = 0.002353147657089335 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 331.27 us (94.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (48.2%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.8687013515828623e-19,4.725658225637431e-19)
sum a = (4.671753378957156e-17,4.661211986717457e-17,7.668862854380439e-18)
sum e = 1.1963648697905722
sum de = -1.5937771935536915e-17
Info: CFL hydro = 0.0023780291052742483 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023780291052742483 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 | 6.6904e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.17008283247856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15633333567911417, dt = 0.0023780291052742483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 330.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8718005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.791541927135544e-20,5.543215066954932e-19)
sum a = (-3.489200831340103e-17,-1.364631140848203e-17,1.0057446505057507e-17)
sum e = 1.196365073897868
sum de = -1.588356182691264e-17
Info: CFL hydro = 0.002370855844916675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002370855844916675 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 | 6.6728e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.50385966738274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1587113647843884, dt = 0.0012886352156115943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 327.52 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8718005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.1145022526381037e-19,5.67797718365562e-19)
sum a = (6.655451736791271e-18,7.359808400080196e-18,-3.1710424473783035e-17)
sum e = 1.1963598811906426
sum de = -1.100465205072787e-17
Info: CFL hydro = 0.002369680883029595 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002369680883029595 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 | 6.8715e+04 | 13440 | 1 | 1.956e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.718454623376516 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 89 [SPH][rank=0]
Info: time since start : 1694.4968463680002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1811.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1805.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1751.46 ms [sph::CartesianRender][rank=0]
---------------- t = 0.16, dt = 0.002369680883029595 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.01 us (2.0%)
patch tree reduce : 1272.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.2%)
LB compute : 515.77 us (95.4%)
LB move op cnt : 0
LB apply : 4.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 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.8758184523809525
Warning: the unit system is not set [sph::Config][rank=0]
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,4.367789937954494e-19)
sum a = (2.2472331638265703e-17,3.0665868333667484e-19,-6.676534521270668e-17)
sum e = 1.19636486849559
sum de = -3.268869550043796e-17
Info: CFL hydro = 0.0023383188026471977 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023383188026471977 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 | 6.5735e+04 | 13440 | 1 | 2.045e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.72448866853236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1623696808830296, dt = 0.0023383188026471977 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 334.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.8644345238095241
Warning: the unit system is not set [sph::Config][rank=0]
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,2.3583370422620256e-19)
sum a = (2.1251686332327923e-17,2.7139293475295722e-17,-1.3821202688822478e-17)
sum e = 1.1963645832104324
sum de = 3.2526065174565133e-19
Info: CFL hydro = 0.002334912238225687 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002334912238225687 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 | 6.6645e+04 | 13440 | 1 | 2.017e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.74230099695452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16470799968567681, dt = 0.002334912238225687 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.74 us (1.9%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 333.84 us (93.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.864285714285714
Warning: the unit system is not set [sph::Config][rank=0]
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.83898859182781e-19)
sum a = (-4.218952666842847e-18,-4.906538933386797e-17,-4.0294771307616806e-17)
sum e = 1.1963643541390085
sum de = -1.620882247865829e-17
Info: CFL hydro = 0.0023335694989747207 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023335694989747207 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 | 6.5459e+04 | 13440 | 1 | 2.053e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.93937438608708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1670429119239025, dt = 0.0023335694989747207 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 344.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639136904761904
Warning: the unit system is not set [sph::Config][rank=0]
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,1.4569282172196516e-19)
sum a = (-2.5816827903406313e-17,6.194505403400832e-17,1.550782544717419e-17)
sum e = 1.1963640609222967
sum de = -1.713039432527097e-17
Info: CFL hydro = 0.0023322589866447067 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023322589866447067 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 | 6.6994e+04 | 13440 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.875560683474944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16937648142287723, dt = 0.0023322589866447067 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 330.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8790922619047619
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-1.102054643241175e-19,2.5470040056429877e-19)
sum a = (1.1756048118227058e-17,-2.805926952530575e-17,-1.8348011924483783e-17)
sum e = 1.1963636561298336
sum de = 1.734723475976807e-18
Info: CFL hydro = 0.0023316725625943976 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023316725625943976 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 | 6.7027e+04 | 13440 | 1 | 2.005e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.87228957461927 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17170874040952194, dt = 0.0023316725625943976 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 337.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.879910714285714
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.6770396744974405e-19,1.6096586161470968e-19)
sum a = (2.5613187371503052e-17,-6.4398323500701715e-18,-8.116872024567612e-18)
sum e = 1.1963631373627572
sum de = 1.5937771935536915e-17
Info: CFL hydro = 0.002332591178881996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002332591178881996 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 | 6.6662e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.63419664027281 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17404041297211634, dt = 0.002332591178881996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.90 us (1.8%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 351.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 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.8796130952380954
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.1145022526381037e-19,1.6276268983738552e-19)
sum a = (7.767089463886717e-18,1.1346371283456969e-17,-7.171021648151056e-17)
sum e = 1.19636248785177
sum de = 7.914675859144182e-18
Info: CFL hydro = 0.0022673879815163695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022673879815163695 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 | 6.6982e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.85027169106787 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17637300415099832, dt = 0.0022673879815163695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.98 us (1.5%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 322.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.8793898809523808
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.120726057336568e-19,-6.678211560945165e-20)
sum a = (-1.5907919198090008e-17,-1.7479544950190467e-17,-2.0531757157775806e-17)
sum e = 1.1963614871009878
sum de = 2.3201926491189795e-17
Info: CFL hydro = 0.0022702122198114947 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022702122198114947 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 | 6.7038e+04 | 13440 | 1 | 2.005e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.714770276989384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1786403921325147, dt = 0.0013596078674852907 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1253.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 330.50 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 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.8797619047619047
Warning: the unit system is not set [sph::Config][rank=0]
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,-3.6984714250077484e-20)
sum a = (2.3813963377863653e-18,-6.2865030084018344e-18,4.643483281587056e-17)
sum e = 1.1963586473135248
sum de = -8.998878031629687e-18
Info: CFL hydro = 0.0022741350196644364 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0022741350196644364 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 | 6.7390e+04 | 13440 | 1 | 1.994e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.542314762316 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 98 [SPH][rank=0]
Info: time since start : 1702.823020622 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1815.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1807.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1739.68 ms [sph::CartesianRender][rank=0]
---------------- t = 0.18, dt = 0.0022741350196644364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.91 us (2.0%)
patch tree reduce : 1292.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 527.40 us (95.5%)
LB move op cnt : 0
LB apply : 4.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.8796130952380952
Warning: the unit system is not set [sph::Config][rank=0]
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.1619489173303694e-19)
sum a = (3.3085597006870934e-17,-1.9779485075215528e-17,2.360313553306969e-17)
sum e = 1.1963604883444545
sum de = 3.0791341698588326e-17
Info: CFL hydro = 0.002281048900899909 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002281048900899909 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 | 6.5914e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.15103921203472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18227413501966444, dt = 0.002281048900899909 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 315.33 us (94.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (72.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8560267857142858
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-7.474805406331449e-19,1.4449493624018126e-19)
sum a = (4.886893611485542e-17,-1.5332934166833741e-18,7.556261619092753e-18)
sum e = 1.1963597910233421
sum de = 1.4094628242311558e-18
Info: CFL hydro = 0.002292786413233024 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002292786413233024 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 | 6.6911e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.88209947692422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18455518392056436, dt = 0.002292786413233024 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.3%)
LB compute : 343.12 us (94.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8550595238095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.3416317395979523e-19,1.4891213895425934e-19)
sum a = (-6.233796047203343e-18,7.05314971674352e-18,4.374677779474752e-17)
sum e = 1.1963593303208713
sum de = 4.087442190270352e-17
Info: CFL hydro = 0.002308951987650353 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002308951987650353 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 | 6.7186e+04 | 13440 | 1 | 2.000e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.261734537101425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18684797033379738, dt = 0.002308951987650353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 327.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8550595238095235
Warning: the unit system is not set [sph::Config][rank=0]
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.752890572824593e-19)
sum a = (-2.122653073721046e-17,-2.729262281696406e-17,2.2232754541908927e-18)
sum e = 1.196359092944283
sum de = -1.1926223897340549e-17
Info: CFL hydro = 0.002264749534699462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002264749534699462 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 | 6.6598e+04 | 13440 | 1 | 2.018e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.188865661251754 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18915692232144773, dt = 0.002264749534699462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1613.00 ns (0.5%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 330.31 us (94.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 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.8694196428571426
Warning: the unit system is not set [sph::Config][rank=0]
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.4758795551620695e-19)
sum a = (-1.5812088359547297e-17,9.966407208441932e-18,6.3583761373088674e-18)
sum e = 1.1963590128531358
sum de = 3.859759734048396e-17
Info: CFL hydro = 0.002281397542953236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002281397542953236 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 | 6.6756e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.496273009070116 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1914216718561472, dt = 0.002281397542953236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 342.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.8796875
Warning: the unit system is not set [sph::Config][rank=0]
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.593047728849056e-19)
sum a = (1.658352660981612e-17,-5.289862287557641e-17,-2.0407177067670283e-17)
sum e = 1.1963592494335549
sum de = -2.3418766925686896e-17
Info: CFL hydro = 0.0023032053961711436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023032053961711436 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 | 6.6326e+04 | 13440 | 1 | 2.026e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.531007954729894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19370306939910042, dt = 0.0023032053961711436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 331.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8800595238095237
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.629124255226085e-19,1.7680041032704043e-19)
sum a = (4.876172536423576e-17,-4.3545533033807824e-17,5.869638860741042e-18)
sum e = 1.1963597003679343
sum de = 4.358492733391728e-17
Info: CFL hydro = 0.002331951789149742 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002331951789149742 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 | 6.6777e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.19684099969676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19600627479527158, dt = 0.002331951789149742 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 333.13 us (94.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8797619047619047
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.858128760502293e-19,2.33999442082221e-19)
sum a = (-2.404695210407062e-17,-1.6866227583517116e-18,-3.3298820622628465e-17)
sum e = 1.1963603209358684
sum de = 1.1546753136970622e-17
Info: CFL hydro = 0.002366733524343464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002366733524343464 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 | 6.6644e+04 | 13440 | 1 | 2.017e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.62801760432198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19833822658442132, dt = 0.00166177341557866 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.31 us (1.7%)
patch tree reduce : 1592.00 ns (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1061.00 ns (0.3%)
LB compute : 341.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.8794642857142856
Warning: the unit system is not set [sph::Config][rank=0]
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,1.2907216066221372e-19)
sum a = (4.483206204124372e-17,-2.606598808361736e-17,-4.284596791244604e-17)
sum e = 1.1963594480816977
sum de = 1.9149720871525222e-17
Info: CFL hydro = 0.002330789203722859 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002330789203722859 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 | 6.7393e+04 | 13440 | 1 | 1.994e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.998023005968534 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 107 [SPH][rank=0]
Info: time since start : 1711.148745443 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1830.15 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1836.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1761.46 ms [sph::CartesianRender][rank=0]
---------------- t = 0.19999999999999998, dt = 0.002330789203722859 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.8%)
patch tree reduce : 1212.00 ns (0.2%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 540.32 us (90.1%)
LB move op cnt : 0
LB apply : 38.23 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 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.8796874999999997
Warning: the unit system is not set [sph::Config][rank=0]
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,1.987741221335136e-20)
sum a = (4.274055399004906e-18,-1.3186323383477017e-17,1.6470925374528434e-17)
sum e = 1.1963612272301802
sum de = -1.7875783318854754e-17
Info: CFL hydro = 0.0023489084663178587 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023489084663178587 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 | 6.3263e+04 | 13440 | 1 | 2.124e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.496490716262784 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20233078920372286, dt = 0.0023489084663178587 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 326.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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.872247023809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.803989536532473e-19,1.3262838318625963e-19)
sum a = (6.540454730540018e-18,2.0392802441888877e-17,3.596052216315226e-17)
sum e = 1.196361912186547
sum de = -2.6508743117270583e-17
Info: CFL hydro = 0.0023824547302233323 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023824547302233323 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 | 6.6576e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.88764877499384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2046796976700407, dt = 0.0023824547302233323 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 359.72 us (94.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639136904761904
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-6.51649702090434e-19,2.252024705753706e-19)
sum a = (5.2912997501357817e-17,-1.9779485075215528e-17,-4.795375160677253e-17)
sum e = 1.1963624455964532
sum de = 4.662069341687669e-18
Info: CFL hydro = 0.0024190986990474993 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024190986990474993 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 | 6.6126e+04 | 13440 | 1 | 2.032e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.19872550442898 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20706215240026404, dt = 0.0024190986990474993 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.8%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 333.13 us (94.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
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.8639136904761906
Warning: the unit system is not set [sph::Config][rank=0]
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,8.703386703586048e-21)
sum a = (1.0555766865479605e-17,4.155225159211944e-17,2.782208819991254e-17)
sum e = 1.196362848751616
sum de = -1.5395670849294163e-17
Info: CFL hydro = 0.0024024226608865113 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024024226608865113 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 | 6.6415e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.03512018257424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20948125109931154, dt = 0.0024024226608865113 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 364.57 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8713541666666664
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-5.941511989648075e-19,1.7043664370506354e-19)
sum a = (-2.650680994091383e-17,-1.6866227583517116e-18,2.720637506227562e-17)
sum e = 1.1963628895447658
sum de = 4.7921736023859296e-17
Info: CFL hydro = 0.002367298500842901 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002367298500842901 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 | 6.6976e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.09928605765739 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21188367376019804, dt = 0.002367298500842901 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1463.00 ns (0.4%)
LB compute : 336.88 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8798363095238093
Warning: the unit system is not set [sph::Config][rank=0]
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,2.3822947518977035e-19)
sum a = (3.334913181286339e-18,-2.0891122802310974e-17,-7.704080687544886e-17)
sum e = 1.1963627233291225
sum de = -6.830473686658678e-18
Info: CFL hydro = 0.0023687985322400577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023687985322400577 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 | 6.3963e+04 | 13440 | 1 | 2.101e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.558607972506216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21425097226104095, dt = 0.0023687985322400577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.75 us (1.9%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 340.34 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
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.8703869047619048
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.803989536532473e-19,-7.621546377849975e-20)
sum a = (1.1940522482421777e-17,-4.0248952187938574e-17,8.836561622023371e-17)
sum e = 1.1963626055035526
sum de = -2.7430314963883262e-17
Info: CFL hydro = 0.0023699405160304146 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023699405160304146 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 | 6.6789e+04 | 13440 | 1 | 2.012e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.377894040590085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.216619770793281, dt = 0.0023699405160304146 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.43 us (1.7%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 357.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8686011904761903
Warning: the unit system is not set [sph::Config][rank=0]
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,3.3525819921426513e-19)
sum a = (-4.341136985984803e-18,2.771427850655199e-17,2.1672144136434067e-17)
sum e = 1.196362431018313
sum de = -1.5070410197548512e-17
Info: CFL hydro = 0.002340249886180721 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002340249886180721 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 | 6.6471e+04 | 13440 | 1 | 2.022e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.19646802498699 (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 : 6.13 us (1.6%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 352.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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.8683779761904762
Warning: the unit system is not set [sph::Config][rank=0]
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,3.0452494982224727e-19)
sum a = (1.8150360819989442e-17,4.7397932743224805e-17,3.008609176048408e-17)
sum e = 1.19635909045263
sum de = 3.5128150388530344e-17
Info: CFL hydro = 0.0023310832188742237 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023310832188742237 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8947e+04 | 13440 | 1 | 1.949e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.65788202576115 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 116 [SPH][rank=0]
Info: time since start : 1719.7373202390002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1836.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1837.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1763.78 ms [sph::CartesianRender][rank=0]
---------------- t = 0.21999999999999997, dt = 0.0023310832188742237 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.77 us (2.1%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 494.43 us (95.3%)
LB move op cnt : 0
LB apply : 4.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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.872693452380952
Warning: the unit system is not set [sph::Config][rank=0]
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,3.4970769283828324e-19)
sum a = (-4.0613109374400875e-17,3.6588214155607017e-17,4.007166513663456e-17)
sum e = 1.1963620430734785
sum de = 2.1250362580715887e-17
Info: CFL hydro = 0.0023089568631086094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023089568631086094 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6632e+04 | 13440 | 1 | 2.017e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.60503778757431 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2223310832188742, dt = 0.0023089568631086094 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 333.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8754464285714285
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.779094317738616e-19,4.632073422373064e-19)
sum a = (-1.10540872259017e-17,7.853337218575158e-18,-5.820765133084259e-17)
sum e = 1.1963617905196862
sum de = -1.9081958235744878e-17
Info: CFL hydro = 0.0023147290598281144 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023147290598281144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6735e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.27348932609955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22464004008198282, dt = 0.0023147290598281144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 329.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.8598214285714285
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.120726057336568e-19,2.0671011345033185e-19)
sum a = (-1.5874378404600057e-17,-1.1576365295959475e-17,-5.551959630971956e-17)
sum e = 1.1963616132207746
sum de = 3.144186300207963e-18
Info: CFL hydro = 0.002372028843406126 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002372028843406126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6409e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.174685428438536 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22695476914181092, dt = 0.002372028843406126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 325.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.8579613095238097
Warning: the unit system is not set [sph::Config][rank=0]
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,9.860094871933612e-20)
sum a = (-2.262566097993404e-17,-2.0661128789808466e-17,9.511210725364056e-17)
sum e = 1.19636157828871
sum de = -1.1600963245594897e-17
Info: CFL hydro = 0.002362461563540935 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002362461563540935 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6659e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.352641566898406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22932679798521705, dt = 0.002362461563540935 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.72 us (1.4%)
patch tree reduce : 1222.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 327.97 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8575892857142855
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.803989536532473e-19,4.83646263270244e-19)
sum a = (-4.0871852638466195e-17,1.2074685656381571e-17,-2.126965461455468e-17)
sum e = 1.196361360826442
sum de = 3.0357660829594124e-18
Info: CFL hydro = 0.002356624885086297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002356624885086297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6751e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.240154610854916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.231689259548758, dt = 0.002356624885086297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 345.19 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.8741071428571427
Warning: the unit system is not set [sph::Config][rank=0]
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,2.8651923367418327e-19)
sum a = (-3.729736236082308e-17,-4.9065389333867974e-18,7.804942645111088e-17)
sum e = 1.1963611546641035
sum de = -1.6263032587282567e-17
Info: CFL hydro = 0.0023547729450244647 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023547729450244647 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6663e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.08055793217486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23404588443384428, dt = 0.0023547729450244647 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 326.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741815476190475
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-5.270696119849099e-19,6.016379832259567e-19)
sum a = (-3.14900135451348e-17,6.363167679236003e-18,-3.835389735575647e-17)
sum e = 1.196360959592444
sum de = -2.179246366695864e-17
Info: CFL hydro = 0.0023620306199504484 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023620306199504484 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6584e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.997330609113014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23640065737886873, dt = 0.0023620306199504484 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1542.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 325.37 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8746279761904763
Warning: the unit system is not set [sph::Config][rank=0]
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,3.6355824372140945e-19)
sum a = (-1.1413452870436867e-17,6.2865030084018344e-18,4.9367256475277513e-17)
sum e = 1.1963607956713156
sum de = 1.2793585635328952e-17
Info: CFL hydro = 0.0024229588215065995 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024229588215065995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6786e+04 | 13440 | 1 | 2.012e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.25442918799468 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23876268799881917, dt = 0.0012373120011807959 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 345.10 us (94.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874404761904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.2458009010552416e-19,5.426421232481004e-19)
sum a = (3.3229343264685e-17,1.3492982066813693e-17,-6.06010265234468e-17)
sum e = 1.1963589833415806
sum de = -3.7947076036992655e-18
Info: CFL hydro = 0.0024229837663664695 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024229837663664695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7633e+04 | 13440 | 1 | 1.987e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.415143660459517 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 125 [SPH][rank=0]
Info: time since start : 1728.135878154 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1812.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1816.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1742.09 ms [sph::CartesianRender][rank=0]
---------------- t = 0.23999999999999996, dt = 0.0024229837663664695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.55 us (1.7%)
patch tree reduce : 1263.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 589.61 us (96.0%)
LB move op cnt : 0
LB apply : 4.41 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (73.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874553571428571
Warning: the unit system is not set [sph::Config][rank=0]
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,3.0980313272635754e-19)
sum a = (4.345928527911939e-18,-2.092945513772806e-17,8.100101627822638e-18)
sum e = 1.1963607132425318
sum de = 7.48099499014998e-18
Info: CFL hydro = 0.0024419164394730293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024419164394730293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3907e+04 | 13440 | 1 | 2.103e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.47660340670037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24242298376636642, dt = 0.0024419164394730293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 6.79 us (1.9%)
LB compute : 339.24 us (93.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8746279761904756
Warning: the unit system is not set [sph::Config][rank=0]
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,4.1386943395633263e-19)
sum a = (5.299924525604626e-17,-4.2625556983797805e-17,4.187448278671931e-17)
sum e = 1.1963606841353989
sum de = -1.7889335846010823e-17
Info: CFL hydro = 0.002446332265148224 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002446332265148224 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5640e+04 | 13440 | 1 | 2.048e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.9338029213621 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24486490020583945, dt = 0.002446332265148224 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.6%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 372.71 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8529761904761906
Warning: the unit system is not set [sph::Config][rank=0]
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,5.7872842338684e-19)
sum a = (8.58165159149976e-18,-3.449910187537592e-17,2.2814926886055893e-17)
sum e = 1.1963607046424451
sum de = -2.2985086056692694e-17
Info: CFL hydro = 0.002448874954110023 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002448874954110023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5140e+04 | 13440 | 1 | 2.063e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.68381922161477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24731123247098769, dt = 0.002448874954110023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.43 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 333.62 us (94.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.850818452380952
Warning: the unit system is not set [sph::Config][rank=0]
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,5.9879300520672e-19)
sum a = (3.350246115453172e-17,5.3818598925586433e-17,2.4597380482950318e-17)
sum e = 1.1963607955187274
sum de = -6.288372600415926e-18
Info: CFL hydro = 0.0024666984269285743 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024666984269285743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5610e+04 | 13440 | 1 | 2.048e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.0365021852381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24976010742509772, dt = 0.0024666984269285743 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 359.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
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.8500744047619047
Warning: the unit system is not set [sph::Config][rank=0]
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.675216847240705e-19)
sum a = (-5.07136797568026e-17,3.2505820433687534e-17,-5.108622214163739e-17)
sum e = 1.1963609773817183
sum de = 3.209238430557093e-17
Info: CFL hydro = 0.002440569487904288 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002440569487904288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5539e+04 | 13440 | 1 | 2.051e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.303297520437155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2522268058520263, dt = 0.002440569487904288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 323.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8725446428571426
Warning: the unit system is not set [sph::Config][rank=0]
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.456133992236056e-19)
sum a = (1.9079919953853738e-17,3.557240726705428e-17,-3.821254686890597e-18)
sum e = 1.1963611110040473
sum de = -3.903127820947816e-18
Info: CFL hydro = 0.0024496404504118596 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024496404504118596 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4972e+04 | 13440 | 1 | 2.069e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.47362626426931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25466737533993056, dt = 0.0024496404504118596 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1332.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 378.39 us (95.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8739583333333334
Warning: the unit system is not set [sph::Config][rank=0]
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,5.008658670708874e-19)
sum a = (2.5213093620587234e-17,1.5639592850170416e-17,1.281977042605115e-17)
sum e = 1.1963613172483942
sum de = -2.2985086056692694e-17
Info: CFL hydro = 0.002463989787874691 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002463989787874691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5663e+04 | 13440 | 1 | 2.047e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.08483520874588 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2571170157903424, dt = 0.002463989787874691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 363.26 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8742559523809526
Warning: the unit system is not set [sph::Config][rank=0]
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,5.405458236549786e-19)
sum a = (1.717288626685379e-17,1.1193041941788632e-17,-1.7812557114126384e-18)
sum e = 1.1963615182598366
sum de = -4.336808689942018e-17
Info: CFL hydro = 0.0024812638181461216 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024812638181461216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5928e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.512101160898425 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2595810055782171, dt = 0.00041899442178283675 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 336.70 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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.8744047619047621
Warning: the unit system is not set [sph::Config][rank=0]
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,5.156896999079629e-19)
sum a = (-8.01145810217063e-18,1.962615573354719e-17,-9.330569594711045e-17)
sum e = 1.1963588307229975
sum de = -3.2526065174565133e-18
Info: CFL hydro = 0.002485394310878373 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002485394310878373 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8671e+04 | 13440 | 1 | 1.957e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.707038065509593 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 134 [SPH][rank=0]
Info: time since start : 1736.487387453 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.25 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1863.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1782.92 ms [sph::CartesianRender][rank=0]
---------------- t = 0.25999999999999995, dt = 0.002485394310878373 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.64 us (1.8%)
patch tree reduce : 1693.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 567.73 us (95.7%)
LB move op cnt : 0
LB apply : 4.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8745535714285717
Warning: the unit system is not set [sph::Config][rank=0]
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,2.5200515823028505e-19)
sum a = (4.887372765678255e-19,1.0119736550110269e-17,-2.3641467868486776e-17)
sum e = 1.1963616322350619
sum de = -8.456776945386935e-18
Info: CFL hydro = 0.002493799778354424 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002493799778354424 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5685e+04 | 13440 | 1 | 2.046e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.72831916218642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2624853943108783, dt = 0.002493799778354424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 355.13 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8742559523809523
Warning: the unit system is not set [sph::Config][rank=0]
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,3.0905445430024263e-19)
sum a = (-1.627207638455231e-17,-3.52657485837176e-18,-5.349996138743192e-17)
sum e = 1.1963617806134752
sum de = 1.3010426069826053e-17
Info: CFL hydro = 0.0024385754997966387 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024385754997966387 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5922e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.03480098870012 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2649791940892327, dt = 0.0024385754997966387 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1233.00 ns (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 328.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8651785714285711
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.8207859323115067e-19,1.241308830498552e-19)
sum a = (-1.7211218602270874e-17,1.655956890018044e-17,-1.3861930795203129e-17)
sum e = 1.1963616975913791
sum de = 2.211772431870429e-17
Info: CFL hydro = 0.0024539751791763605 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024539751791763605 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7140e+04 | 13440 | 1 | 2.002e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.85539347923319 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26741776958902935, dt = 0.0024539751791763605 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 326.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8578125
Warning: the unit system is not set [sph::Config][rank=0]
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.4561795387935365e-19)
sum a = (9.510252416978629e-17,-1.962615573354719e-17,3.0306502689132318e-18)
sum e = 1.1963617720465545
sum de = -4.662069341687669e-18
Info: CFL hydro = 0.0024753587663993476 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024753587663993476 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7090e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.09946185041184 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2698717447682057, dt = 0.0024753587663993476 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 360.34 us (94.8%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8575148809523807
Warning: the unit system is not set [sph::Config][rank=0]
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.7683784424834618e-19)
sum a = (3.7699851882702466e-17,-2.4532694666933986e-17,2.2005156300369988e-17)
sum e = 1.1963618794710975
sum de = 0
Info: CFL hydro = 0.002476638448002137 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002476638448002137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6240e+04 | 13440 | 1 | 2.029e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.91961871229994 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27234710353460506, dt = 0.002476638448002137 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 329.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.8682291666666664
Warning: the unit system is not set [sph::Config][rank=0]
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,2.4653980571964607e-19)
sum a = (-1.3234238802748373e-17,3.342579648369756e-17,-3.373005939607066e-17)
sum e = 1.1963619690642988
sum de = -1.4094628242311558e-17
Info: CFL hydro = 0.0024832733940336827 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024832733940336827 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7319e+04 | 13440 | 1 | 1.996e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.65842784488355 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2748237419826072, dt = 0.0024832733940336827 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 328.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735863095238094
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.9166167708542177e-19,9.433348169048103e-20)
sum a = (-3.909898212542604e-18,-1.2189682662632825e-17,1.9113460747343686e-17)
sum e = 1.1963620973209694
sum de = -1.7997756063259374e-17
Info: CFL hydro = 0.002499134121014914 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002499134121014914 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6391e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.160865548373565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2773070153766409, dt = 0.002499134121014914 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 337.87 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865997023809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.354079348994881e-19,2.243040564640327e-19)
sum a = (-4.0526861619712433e-17,6.815489237157599e-17,-5.462836951127234e-17)
sum e = 1.196362258359748
sum de = -1.2468324983583301e-17
Info: CFL hydro = 0.0024721606821933063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024721606821933063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5924e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.13050046814006 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2798061494976558, dt = 0.00019385050234416168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1643.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 355.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865997023809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.31238773442199e-20,1.2023775523405757e-19)
sum a = (-1.2045936404818758e-17,2.9439233600320786e-17,8.481029211029914e-18)
sum e = 1.1963590834440423
sum de = 2.8080836267374565e-17
Info: CFL hydro = 0.00247283546758809 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00247283546758809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9177e+04 | 13440 | 1 | 1.943e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.591979064718945 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 143 [SPH][rank=0]
Info: time since start : 1745.0090069040002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1860.23 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1816.47 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1759.84 ms [sph::CartesianRender][rank=0]
---------------- t = 0.27999999999999997, dt = 0.00247283546758809 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.26 us (1.7%)
patch tree reduce : 1653.00 ns (0.3%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 628.84 us (95.9%)
LB move op cnt : 0
LB apply : 4.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (78.6%)
Warning: High interface/patch volume ratio. [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]
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,1.3012031045877463e-19)
sum a = (-4.8480821218757436e-17,-2.1466107833567237e-18,3.2536965456213914e-17)
sum e = 1.196362226869123
sum de = -6.179952383167375e-18
Info: CFL hydro = 0.0024902344098713418 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024902344098713418 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4332e+04 | 13440 | 1 | 2.089e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.61114386720722 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28247283546758806, dt = 0.0024902344098713418 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 351.60 us (90.1%)
LB move op cnt : 0
LB apply : 22.10 us (5.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.8706845238095235
Warning: the unit system is not set [sph::Config][rank=0]
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,2.3785513597671287e-19)
sum a = (4.6803781544259996e-17,-3.204583240868252e-17,-8.389989914414338e-18)
sum e = 1.1963623542717852
sum de = -9.486769009248164e-18
Info: CFL hydro = 0.002488037388301522 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002488037388301522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6782e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.545364504975716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2849630698774594, dt = 0.002488037388301522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 333.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.869642857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,0,1.6553280001401075e-19)
sum a = (2.386187879713501e-18,-2.920923958781828e-17,-2.2148902558184054e-17)
sum e = 1.1963623072801117
sum de = -1.5612511283791264e-17
Info: CFL hydro = 0.0024605524301107937 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024605524301107937 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6449e+04 | 13440 | 1 | 2.023e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.283920381633955 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2874511072657609, dt = 0.0024605524301107937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 351.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.85922619047619
Warning: the unit system is not set [sph::Config][rank=0]
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.0563852592481646e-19)
sum a = (-1.4307544194426734e-17,1.4719616800160393e-17,1.0084997871138537e-17)
sum e = 1.1963621057502638
sum de = 1.0950441942103595e-17
Info: CFL hydro = 0.0024693905969229183 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024693905969229183 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6871e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.07308104488589 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2899116596958717, dt = 0.0024693905969229183 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 342.02 us (94.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 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.8587797619047617
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.4978256068089474e-19,1.5617431968757415e-19)
sum a = (-1.1178667316007224e-17,-4.9717039035958406e-17,-5.319929213150417e-17)
sum e = 1.1963619138468666
sum de = 5.908901840045999e-18
Info: CFL hydro = 0.00245699218489411 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00245699218489411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7085e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.37300403628195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2923810502927946, dt = 0.00245699218489411 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 334.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8587053571428573
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.2458009010552416e-19,-3.975482442670272e-20)
sum a = (3.7872347392079344e-17,3.11258563586725e-17,5.447743594056757e-17)
sum e = 1.1963616210343322
sum de = 7.765598060427426e-18
Info: CFL hydro = 0.002455226023426781 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002455226023426781 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6558e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.803174680585094 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2948380424776887, dt = 0.002455226023426781 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 340.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.8732886904761905
Warning: the unit system is not set [sph::Config][rank=0]
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.20710400018681e-19)
sum a = (6.195463711786259e-18,-3.231415875660211e-17,-6.03255128626365e-17)
sum e = 1.1963613345319883
sum de = 6.627185779317646e-18
Info: CFL hydro = 0.0024604107801398513 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024604107801398513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6515e+04 | 13440 | 1 | 2.021e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.7435061526764 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2972932685011155, dt = 0.0024604107801398513 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 337.02 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744047619047621
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-2.20410928648235e-19,-6.760566187817807e-20)
sum a = (2.2338168464305906e-17,-3.6837374335818064e-17,5.665519174645067e-17)
sum e = 1.196361082867038
sum de = -1.322049024074512e-17
Info: CFL hydro = 0.002415650663701512 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002415650663701512 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6305e+04 | 13440 | 1 | 2.027e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.69772621897554 (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 : 12.18 us (3.4%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.4%)
LB compute : 336.27 us (92.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.8744047619047617
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.922840575552682e-19,8.130647707608127e-20)
sum a = (-5.0129111641692064e-17,-5.366526958391809e-19,-2.6742793380825256e-17)
sum e = 1.196359019257771
sum de = -1.5009423825346202e-18
Info: CFL hydro = 0.002416564848447996 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002416564848447996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8535e+04 | 13440 | 1 | 1.961e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.5218597603441975 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 152 [SPH][rank=0]
Info: time since start : 1753.5786035110002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1842.19 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1853.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1775.22 ms [sph::CartesianRender][rank=0]
---------------- t = 0.3, dt = 0.002416564848447996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.40 us (1.5%)
patch tree reduce : 1322.00 ns (0.2%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 644.26 us (95.8%)
LB move op cnt : 0
LB apply : 5.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (78.6%)
Warning: High interface/patch volume ratio. [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]
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.7331905564560602e-20)
sum a = (-6.324835343818918e-18,-2.1619437175235577e-17,2.5179552827097286e-17)
sum e = 1.1963608505562406
sum de = -1.8973538018496328e-19
Info: CFL hydro = 0.002418677873877593 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002418677873877593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3956e+04 | 13440 | 1 | 2.101e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.398177054932965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.302416564848448, dt = 0.002418677873877593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 329.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.8752976190476194
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.7728705130401514e-19,1.398531299982687e-19)
sum a = (2.1868597355446624e-17,7.244811393828942e-18,4.5948491310266305e-17)
sum e = 1.1963607091940587
sum de = 2.350008208862331e-17
Info: CFL hydro = 0.0024030582729082524 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024030582729082524 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6224e+04 | 13440 | 1 | 2.029e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.904008166187324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3048352427223256, dt = 0.0024030582729082524 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 361.71 us (94.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8750744047619048
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.133173666733497e-19,2.764869427642432e-19)
sum a = (3.7881930475933616e-17,-1.6291242552260852e-17,6.297763131930603e-17)
sum e = 1.1963606371353328
sum de = -1.599198204416119e-17
Info: CFL hydro = 0.0023928416731489694 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023928416731489694 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5897e+04 | 13440 | 1 | 2.040e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.416077353294035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30723830099523386, dt = 0.0023928416731489694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 335.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8543898809523809
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.060363028668284e-19,4.410090269029988e-19)
sum a = (-8.346866037070119e-18,3.319580247119505e-17,-1.6969245734950532e-17)
sum e = 1.1963606325988598
sum de = 1.0381235801548705e-17
Info: CFL hydro = 0.0023991083069230725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023991083069230725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6036e+04 | 13440 | 1 | 2.035e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.3247919837289 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3096311426683828, dt = 0.0023991083069230725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 342.21 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.8502976190476186
Warning: the unit system is not set [sph::Config][rank=0]
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,3.013805004325646e-19)
sum a = (6.415874640434493e-17,-1.9856149746049694e-17,-3.5984479872787935e-17)
sum e = 1.1963606882690925
sum de = -1.0055975149803054e-17
Info: CFL hydro = 0.002407899984263413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002407899984263413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5696e+04 | 13440 | 1 | 2.046e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.21732208705531 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3120302509753059, dt = 0.002407899984263413 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 1703.00 ns (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 346.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 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.8501488095238094
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.252024705753706e-19,1.8335134655554608e-19)
sum a = (8.62477546884398e-19,4.829874262552629e-18,-3.138699539370138e-17)
sum e = 1.1963607689023366
sum de = 2.791820594150174e-18
Info: CFL hydro = 0.002410729692780644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002410729692780644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5579e+04 | 13440 | 1 | 2.049e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.296663624491316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31443815095956934, dt = 0.002410729692780644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1392.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 350.47 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.870386904761905
Warning: the unit system is not set [sph::Config][rank=0]
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.2018160435209894e-19)
sum a = (-1.389547158869308e-17,3.2275826421185026e-17,6.601786467207353e-17)
sum e = 1.1963608473271419
sum de = 2.5614276324970042e-17
Info: CFL hydro = 0.002428572963633691 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002428572963633691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5923e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.56862699073083 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31684888065235, dt = 0.002428572963633691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.8%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 348.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 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.8750000000000002
Warning: the unit system is not set [sph::Config][rank=0]
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,3.9975684562406625e-19)
sum a = (2.86725868919791e-17,-5.803515582146571e-17,5.099158918857646e-17)
sum e = 1.1963609438764917
sum de = 5.1228552649940085e-18
Info: CFL hydro = 0.002377968802553459 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002377968802553459 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5491e+04 | 13440 | 1 | 2.052e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60284682259483 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3192774536159837, dt = 0.0007225463840163093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 364.30 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.875
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.7374027031657247e-19,4.420010258176011e-19)
sum a = (-2.0124476093969286e-18,4.2548892312963635e-17,4.188765952701893e-17)
sum e = 1.1963593514756743
sum de = 2.222614453595284e-17
Info: CFL hydro = 0.002383694838671722 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002383694838671722 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8586e+04 | 13440 | 1 | 1.960e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.274029375101334 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 161 [SPH][rank=0]
Info: time since start : 1762.0227782840002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1868.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1855.57 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1780.99 ms [sph::CartesianRender][rank=0]
---------------- t = 0.32, dt = 0.002383694838671722 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.54 us (1.8%)
patch tree reduce : 1563.00 ns (0.3%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 549.37 us (95.6%)
LB move op cnt : 0
LB apply : 4.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744791666666665
Warning: the unit system is not set [sph::Config][rank=0]
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,5.28080327860165e-19)
sum a = (3.930980997022e-17,7.896461095919377e-18,6.204088487255102e-17)
sum e = 1.1963609163871827
sum de = 2.0125502826762176e-18
Info: CFL hydro = 0.0023963465294955916 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0023963465294955916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6356e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.36760597672909 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32238369483867174, dt = 0.0023963465294955916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 354.65 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.63 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.922840575552682e-19,7.036079848628101e-19)
sum a = (-2.25394132252456e-17,1.0656389245949451e-17,2.4343428760812134e-17)
sum e = 1.1963610142239023
sum de = -7.575862680242462e-18
Info: CFL hydro = 0.0024162641920674366 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024162641920674366 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7057e+04 | 13440 | 1 | 2.004e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.04249567956683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32478004136816735, dt = 0.0024162641920674366 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.3%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 354.39 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8743303571428571
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.671753378957156e-19,7.268170160723729e-19)
sum a = (4.1226426741074224e-17,6.7464910334068465e-18,-1.1068461851683107e-18)
sum e = 1.1963610969398086
sum de = 1.645276796746753e-17
Info: CFL hydro = 0.0024393805922127624 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024393805922127624 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5012e+04 | 13440 | 1 | 2.067e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.076861290566946 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32719630556023477, dt = 0.0024393805922127624 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1292.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 363.33 us (95.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.8655505952380953
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.773808022198331e-19,6.793133699353806e-19)
sum a = (-7.283143729246027e-18,-1.3799640750150367e-17,-7.256790248646782e-18)
sum e = 1.1963611830543495
sum de = 1.2902005852577503e-17
Info: CFL hydro = 0.002437341812669453 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002437341812669453 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6657e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.55382881066137 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.32963568615244754, dt = 0.002437341812669453 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.4%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 407.58 us (95.4%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8588541666666665
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.42066618236163e-19,6.607087110464247e-19)
sum a = (1.945366022417031e-17,6.232837738817917e-17,1.9575844543312267e-17)
sum e = 1.1963612219888538
sum de = 4.607859233063394e-19
Info: CFL hydro = 0.002426798315822397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002426798315822397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5775e+04 | 13440 | 1 | 2.043e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.94191459993654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.332073027965117, dt = 0.002426798315822397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 352.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8581845238095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.395770963567772e-20,7.393199457884922e-19)
sum a = (-7.973125766753546e-17,-3.442243720454175e-17,-2.208900828409486e-18)
sum e = 1.1963612295253976
sum de = 4.933119884809045e-18
Info: CFL hydro = 0.002439761918343882 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002439761918343882 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7780e+04 | 13440 | 1 | 1.983e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.059467618636226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3344998262809394, dt = 0.002439761918343882 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 334.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
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.8619791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.1145022526381037e-19,7.005384033157389e-19)
sum a = (1.28604985324318e-17,1.0273065891778608e-17,4.083831184497625e-17)
sum e = 1.1963612508815464
sum de = -8.023096076392733e-18
Info: CFL hydro = 0.0024584208025259877 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024584208025259877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7626e+04 | 13440 | 1 | 1.987e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.19384873819293 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33693958819928327, dt = 0.0024584208025259877 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 339.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.872693452380952
Warning: the unit system is not set [sph::Config][rank=0]
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,8.68242370765483e-19)
sum a = (-2.3382724604421456e-17,1.3569646737647861e-17,-1.5349704563578716e-17)
sum e = 1.196361254035986
sum de = 3.63207727782644e-18
Info: CFL hydro = 0.00248079893185407 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00248079893185407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7398e+04 | 13440 | 1 | 1.994e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.38170849393682 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3393980090018093, dt = 0.000601990998190749 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 332.16 us (94.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8679315476190481
Warning: the unit system is not set [sph::Config][rank=0]
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,7.959949026453923e-19)
sum a = (2.1811098852320997e-17,2.37660479585923e-18,-1.19165647727861e-17)
sum e = 1.1963594640265618
sum de = -4.2825985813177425e-18
Info: CFL hydro = 0.0024863808070179462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024863808070179462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9015e+04 | 13440 | 1 | 1.947e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.128498332562751 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 170 [SPH][rank=0]
Info: time since start : 1770.467215439 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1883.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1880.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1804.99 ms [sph::CartesianRender][rank=0]
---------------- t = 0.34, dt = 0.0024863808070179462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.37 us (1.8%)
patch tree reduce : 1182.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 549.98 us (95.7%)
LB move op cnt : 0
LB apply : 4.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (80.4%)
Warning: High interface/patch volume ratio. [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]
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,7.706147040000962e-19)
sum a = (1.284133236472326e-18,-1.724955093768796e-17,-1.1475742915489628e-18)
sum e = 1.196361227416433
sum de = 3.2526065174565133e-18
Info: CFL hydro = 0.0024773665624369563 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024773665624369563 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7016e+04 | 13440 | 1 | 2.005e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.63238126367833 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.342486380807018, dt = 0.0024773665624369563 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 334.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.8658482142857142
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,6.001406263737269e-19,7.856631403650063e-19)
sum a = (-2.4436863828391275e-17,1.24963413459695e-17,2.5869534864604804e-17)
sum e = 1.1963611339963778
sum de = -5.421010862427522e-18
Info: CFL hydro = 0.0024584684475742356 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024584684475742356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7269e+04 | 13440 | 1 | 1.998e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.6385512804809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34496374736945495, dt = 0.0024584684475742356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.41 us (1.6%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 379.56 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.867708333333333
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.192599186243601e-19,8.710873487847197e-19)
sum a = (-7.57063624487416e-19,-3.2199161750350857e-17,-9.094346577703264e-18)
sum e = 1.1963610193949885
sum de = 2.2768245622195593e-17
Info: CFL hydro = 0.002449245470128675 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002449245470128675 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7217e+04 | 13440 | 1 | 1.999e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.26355039624252 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3474222158170292, dt = 0.002449245470128675 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.6%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.4%)
LB compute : 351.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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.8678571428571427
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-9.822660950627866e-20,8.112679425381368e-19)
sum a = (2.2021926697114962e-17,-4.13989222504511e-18,-1.346423281525088e-17)
sum e = 1.1963609326232747
sum de = -1.3010426069826053e-17
Info: CFL hydro = 0.002447985260739142 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002447985260739142 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7431e+04 | 13440 | 1 | 1.993e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.23817309128851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3498714612871579, dt = 0.002447985260739142 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 365.32 us (95.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8581845238095236
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.9051066706154686e-19,7.695665542035353e-19)
sum a = (-2.4686024008602325e-17,-2.069946112522555e-18,-2.2596312785630336e-17)
sum e = 1.1963608836617377
sum de = -3.393552799879629e-17
Info: CFL hydro = 0.0024918669146929535 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024918669146929535 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7507e+04 | 13440 | 1 | 1.991e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.264895626179815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35231944654789704, dt = 0.0024918669146929535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 335.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 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.8575148809523805
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.1104398416136624e-18,7.072016413081617e-19)
sum a = (5.4475040169604e-17,-1.310965871264285e-17,1.939556277830379e-17)
sum e = 1.1963609267889377
sum de = 2.2442984970449942e-17
Info: CFL hydro = 0.0024784235592961302 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024784235592961302 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7424e+04 | 13440 | 1 | 1.993e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00295577379966 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35481131346259, dt = 0.0024784235592961302 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 335.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8586309523809526
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.4870186384388325e-19,8.147118632982655e-19)
sum a = (-4.202661424290586e-17,2.825093120239117e-17,3.090544543002426e-18)
sum e = 1.1963609390887988
sum de = -1.691355389077387e-17
Info: CFL hydro = 0.0024720674467771553 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024720674467771553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7192e+04 | 13440 | 1 | 2.000e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.60641604522498 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3572897370218861, dt = 0.0024720674467771553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.8%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 340.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8738839285714284
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.5638394964688632e-18,7.852139333093374e-19)
sum a = (3.229499258889357e-18,-8.35644912092439e-18,-5.875268922505426e-17)
sum e = 1.1963609886432103
sum de = -2.8189256484623115e-18
Info: CFL hydro = 0.0024690370917706344 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024690370917706344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7324e+04 | 13440 | 1 | 1.996e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.579205900649505 (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 : 6.52 us (1.8%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 349.33 us (94.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741815476190475
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.1145022526381037e-19,7.090733373734491e-19)
sum a = (2.7752610841969073e-17,3.0129215637828304e-17,1.3853545596830642e-17)
sum e = 1.1963594569454223
sum de = -1.1058862159352145e-17
Info: CFL hydro = 0.002468268144170908 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002468268144170908 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6993e+04 | 13440 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.274330540146237 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 179 [SPH][rank=0]
Info: time since start : 1779.1433003020002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1881.44 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1881.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1807.29 ms [sph::CartesianRender][rank=0]
---------------- t = 0.36000000000000004, dt = 0.002468268144170908 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.39 us (1.8%)
patch tree reduce : 1162.00 ns (0.2%)
gen split merge : 731.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 543.34 us (95.8%)
LB move op cnt : 0
LB apply : 4.08 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.875892857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-6.803989536532473e-19,7.429884700764554e-19)
sum a = (4.620244303240449e-18,2.2999401250250612e-18,1.8342022497074863e-17)
sum e = 1.1963610152030562
sum de = 2.8189256484623115e-17
Info: CFL hydro = 0.0024738791850360156 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024738791850360156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5438e+04 | 13440 | 1 | 2.054e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.26372791282478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36246826814417094, dt = 0.0024738791850360156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 355.94 us (95.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764880952380953
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.249967501207426e-19,8.060271935553323e-19)
sum a = (1.30018490192823e-17,4.477216776715453e-17,-1.9278768943829863e-17)
sum e = 1.1963611063042325
sum de = 2.6237692574149207e-17
Info: CFL hydro = 0.0024783500885692538 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024783500885692538 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7820e+04 | 13440 | 1 | 1.982e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.940679539395965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36494214732920693, dt = 0.0024783500885692538 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 343.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.877380952380952
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-5.845681151105364e-19,7.156617075232605e-19)
sum a = (-3.701466138712208e-18,-3.5629905770179906e-17,-1.1050253992359993e-16)
sum e = 1.1963611428982739
sum de = -5.204170427930421e-18
Info: CFL hydro = 0.0024877516507984957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024877516507984957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7945e+04 | 13440 | 1 | 1.978e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.104832329047206 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3674204974177762, dt = 0.0024877516507984957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.5%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 375.92 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735863095238097
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,3.479857324582189e-19,3.201723289280493e-19)
sum a = (-5.701934893291298e-19,9.77474553135651e-18,-3.2869977620149835e-17)
sum e = 1.1963611458923105
sum de = -6.938893903907228e-18
Info: CFL hydro = 0.002476778315027551 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002476778315027551 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7906e+04 | 13440 | 1 | 1.979e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.249770304855716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3699082490685747, dt = 0.002476778315027551 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 326.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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.8572172619047618
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,3.761360412801402e-19,3.3570740626993407e-19)
sum a = (-1.351693977644937e-17,-9.410588344894209e-18,-5.6396448482385354e-18)
sum e = 1.1963610799270976
sum de = -7.589415207398531e-18
Info: CFL hydro = 0.0024713774707145297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024713774707145297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7781e+04 | 13440 | 1 | 1.983e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.967469242985366 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3723850273836023, dt = 0.0024713774707145297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 361.21 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8568452380952376
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.8604658888955982e-19,3.4147223015101903e-19)
sum a = (3.507408690663219e-18,1.0905549426160498e-17,5.017942283192699e-17)
sum e = 1.1963609914767146
sum de = -9.75781955236954e-18
Info: CFL hydro = 0.0024761267832518288 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024761267832518288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6614e+04 | 13440 | 1 | 2.018e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.09689481471703 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3748564048543168, dt = 0.0024761267832518288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 324.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.8566964285714285
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.903329389916213e-19,5.370644689735442e-19)
sum a = (4.930496643022475e-18,-3.365579049620006e-17,-6.149704486382114e-17)
sum e = 1.1963609041565522
sum de = 3.621235256101585e-17
Info: CFL hydro = 0.0024834787082118177 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0024834787082118177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7656e+04 | 13440 | 1 | 1.987e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.87290338843288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37733253163756864, dt = 0.0024834787082118177 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 334.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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.8654017857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.67591997910934e-19,2.662300483264687e-19)
sum a = (8.231869030818865e-18,1.698122458976837e-17,-1.008619575662032e-17)
sum e = 1.1963608281719866
sum de = -3.5128150388530344e-17
Info: CFL hydro = 0.002522732060652307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002522732060652307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7847e+04 | 13440 | 1 | 1.981e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.13293513823549 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37981601034578044, dt = 0.00018398965421961844 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 362.36 us (94.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.867857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,7.368493069823129e-19,3.163166350335574e-19)
sum a = (-1.139907824465546e-17,-7.934793431336462e-18,-4.173672595631416e-17)
sum e = 1.1963595067528716
sum de = -2.6020852139652106e-18
Info: CFL hydro = 0.0025222322405353665 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025222322405353665 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9620e+04 | 13440 | 1 | 1.930e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.43107804893408 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 188 [SPH][rank=0]
Info: time since start : 1787.63891398 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1874.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1875.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1797.89 ms [sph::CartesianRender][rank=0]
---------------- t = 0.38000000000000006, dt = 0.0025222322405353665 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.81 us (2.0%)
patch tree reduce : 1283.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 508.32 us (95.5%)
LB move op cnt : 0
LB apply : 4.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8782738095238094
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.3748079676365544e-19,2.2074783393998675e-19)
sum a = (1.3100075628788578e-17,-4.7934585439063984e-17,-3.8983985119174787e-17)
sum e = 1.1963608159740011
sum de = 3.946495907847236e-17
Info: CFL hydro = 0.0025196695333797718 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025196695333797718 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7466e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.580217860063144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38252223224053544, dt = 0.0025196695333797718 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 333.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8784226190476192
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.863415056042578e-19,1.3274068495017687e-19)
sum a = (4.018187060095868e-17,-2.0546131783557215e-17,3.257769356259457e-17)
sum e = 1.1963607916615082
sum de = 1.0408340855860843e-17
Info: CFL hydro = 0.0025157174532377245 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025157174532377245 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6996e+04 | 13440 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.21670089802105 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38504190177391523, dt = 0.0025157174532377245 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.80 us (1.9%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 338.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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.8785714285714286
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.0813260245995021e-19,3.011558969047301e-19)
sum a = (-3.072336683679311e-17,-1.0349730562612775e-17,-5.952772113176843e-17)
sum e = 1.1963608031363964
sum de = -2.5153490401663703e-17
Info: CFL hydro = 0.00251765374761797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00251765374761797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7537e+04 | 13440 | 1 | 1.990e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50972507099059 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3875576192271529, dt = 0.00251765374761797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 349.85 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8732142857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.654722605888577e-19,3.080811723462932e-20)
sum a = (-1.2970703996755918e-17,8.222285946964594e-18,3.354079348994881e-20)
sum e = 1.196360847688281
sum de = -2.5804011705155006e-17
Info: CFL hydro = 0.0025243275537024192 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025243275537024192 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6955e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.1527090201378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3900752729747709, dt = 0.0025243275537024192 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 351.18 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8629464285714286
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.650087251157303e-19,1.0563852592481646e-19)
sum a = (1.541918192152218e-17,5.620478680529993e-17,-1.5761777169312374e-17)
sum e = 1.196360910133507
sum de = -2.6020852139652106e-18
Info: CFL hydro = 0.002532930581207835 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002532930581207835 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7245e+04 | 13440 | 1 | 1.999e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.46865778706938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3925996005284733, dt = 0.002532930581207835 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 339.42 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8631696428571427
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.4828520382866487e-19,4.6418062419125584e-20)
sum a = (3.909898212542604e-18,1.2525090597532313e-17,3.516273043228419e-17)
sum e = 1.1963609767239833
sum de = 4.401860820291148e-17
Info: CFL hydro = 0.0025491137219419147 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025491137219419147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6738e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.27955022802949 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39513253110968116, dt = 0.0025491137219419147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 329.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8633184523809523
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.687430079348089e-19,1.8776854926962415e-19)
sum a = (-2.788198247400173e-17,-6.157131376369175e-17,6.090049789389277e-18)
sum e = 1.19636104770781
sum de = 2.0816681711721685e-17
Info: CFL hydro = 0.0025524262198320068 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025524262198320068 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7085e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.80544485158914 (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.30 us (1.4%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 364.39 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862202380952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.7281841847628007e-19,1.6890185293152794e-19)
sum a = (-2.032572085490898e-17,7.637717831854057e-18,2.193567894242652e-17)
sum e = 1.1963608465955866
sum de = -3.2959746043559335e-17
Info: CFL hydro = 0.002546956681942899 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002546956681942899 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6785e+04 | 13440 | 1 | 2.012e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.472804611886 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 1795.9501272060002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1901.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1852.59 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1772.54 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4000000000000001, dt = 0.002546956681942899 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.91 us (1.9%)
patch tree reduce : 1273.00 ns (0.2%)
gen split merge : 631.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 560.68 us (95.5%)
LB move op cnt : 0
LB apply : 4.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (77.5%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.2655660115046757e-18,2.4137392457945305e-19)
sum a = (-2.3660634036195318e-17,-2.763521806475425e-17,5.031119023492322e-18)
sum e = 1.196361127759489
sum de = 1.1492543028346347e-17
Info: CFL hydro = 0.002543324122439297 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002543324122439297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5186e+04 | 13440 | 1 | 2.062e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.471566302886906 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40254695668194296, dt = 0.002543324122439297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 328.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8710565476190477
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,3.4439207601286724e-20,2.3748079676365544e-19)
sum a = (8.09770585685907e-18,-2.3631884784632506e-17,-3.7613604128014024e-17)
sum e = 1.1963611783830013
sum de = 2.3635607360183997e-17
Info: CFL hydro = 0.0025570640184367608 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025570640184367608 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8591e+04 | 13440 | 1 | 1.959e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.72746342394794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40509028080438225, dt = 0.0025570640184367608 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 349.59 us (94.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.872098214285714
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.349261808033686e-19,9.553136717226491e-20)
sum a = (1.72687171053965e-17,-2.050779944814013e-18,-1.4123069830232016e-17)
sum e = 1.1963612525548593
sum de = 2.3635607360183997e-17
Info: CFL hydro = 0.0025575562129679773 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025575562129679773 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8762e+04 | 13440 | 1 | 1.955e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.09717687741398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.407647344822819, dt = 0.0025575562129679773 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 324.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8600446428571433
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.720606307386691e-19,8.370224803964904e-20)
sum a = (1.5716257521004585e-17,-7.934793431336462e-18,1.4187755646248347e-17)
sum e = 1.196361320699768
sum de = -4.0332320816460765e-17
Info: CFL hydro = 0.0025772938013571725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025772938013571725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8898e+04 | 13440 | 1 | 1.951e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.199582550397544 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.410204901035787, dt = 0.0025772938013571725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 333.40 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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.858407738095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-7.78625563159526e-21,1.5512616989101324e-19)
sum a = (8.183953611547509e-18,2.278857340545665e-17,3.571255986842299e-17)
sum e = 1.1963614177074233
sum de = -2.0057740190981832e-17
Info: CFL hydro = 0.0026061872759313856 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026061872759313856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8698e+04 | 13440 | 1 | 1.956e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.42512872403849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4127821948371442, dt = 0.0026061872759313856 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 331.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 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.863318452380952
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.7159709526554168e-19,2.767115462920777e-19)
sum a = (-8.088122773004798e-17,1.2036353320964487e-17,-3.966019147364179e-17)
sum e = 1.1963615296562478
sum de = 7.37257477290143e-18
Info: CFL hydro = 0.0026435101909230646 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026435101909230646 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8943e+04 | 13440 | 1 | 1.949e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.128369709345854 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41538838211307555, dt = 0.0026435101909230646 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1243.00 ns (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 335.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.863764880952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.6146194412828763e-19,7.381969281493198e-20)
sum a = (1.3857139253275994e-17,-3.1815838396180016e-17,-1.0638420963722693e-17)
sum e = 1.1963616523342293
sum de = -1.4094628242311558e-17
Info: CFL hydro = 0.0026421217933517544 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026421217933517544 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9622e+04 | 13440 | 1 | 1.930e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.29803327124748 (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 : 5.06 us (1.4%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 338.51 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.863616071428571
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.231530464401578e-19,9.77774024506097e-20)
sum a = (2.836592820864242e-17,1.0104403615943435e-16,3.759443796030548e-17)
sum e = 1.1963608864863249
sum de = 3.3176586478056436e-17
Info: CFL hydro = 0.002643638593810683 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002643638593810683 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9100e+04 | 13440 | 1 | 1.945e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.42779973659111 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 204 [SPH][rank=0]
Info: time since start : 1804.226609986 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1927.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1844.59 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4200000000000001, dt = 0.002643638593810683 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.88 us (1.9%)
patch tree reduce : 1323.00 ns (0.2%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 556.42 us (95.5%)
LB move op cnt : 0
LB apply : 5.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (79.2%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.1189943231947936e-19,2.3733106107843243e-19)
sum a = (2.1274446156481818e-17,-3.971229949209939e-17,1.2607744695775401e-17)
sum e = 1.1963617366915016
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.0026410162946772157 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026410162946772157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5558e+04 | 13440 | 1 | 2.050e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.422688283144346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42264363859381077, dt = 0.0026410162946772157 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1332.00 ns (0.3%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1442.00 ns (0.3%)
LB compute : 404.28 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8750744047619048
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.9380485213645257e-19,2.4347022417257487e-19)
sum a = (1.5543762011627707e-17,1.2189682662632825e-17,3.557480303801785e-17)
sum e = 1.1963617952279302
sum de = 2.5370330836160804e-17
Info: CFL hydro = 0.002630914703747492 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002630914703747492 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9362e+04 | 13440 | 1 | 1.938e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.06743223436459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.425284654888488, dt = 0.002630914703747492 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 366.95 us (95.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8776785714285715
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.7848493678579904e-19,3.620608868691796e-19)
sum a = (4.849040430261171e-17,1.0848050923034873e-17,-1.7599333498368854e-17)
sum e = 1.1963618217203373
sum de = 1.702197410802242e-17
Info: CFL hydro = 0.002621252590366981 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002621252590366981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9035e+04 | 13440 | 1 | 1.947e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.64930011504565 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4279155695922355, dt = 0.002621252590366981 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.83 us (1.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 394.36 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 (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.860565476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-4.354313726284426e-19,2.509570084337241e-19)
sum a = (-1.3866722337130265e-17,-3.714403301915474e-17,1.6315200261896527e-17)
sum e = 1.1963618385066452
sum de = -1.1926223897340549e-18
Info: CFL hydro = 0.002620616988116273 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002620616988116273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8662e+04 | 13440 | 1 | 1.957e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.20909149624464 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4305368221826025, dt = 0.002620616988116273 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 333.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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.854315476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.240748982804501e-19,3.3518333137165362e-19)
sum a = (-4.7017005160017527e-17,-4.768542525885294e-17,3.378755789919629e-17)
sum e = 1.1963618523190425
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.002628810942882065 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002628810942882065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8644e+04 | 13440 | 1 | 1.958e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.184964663886454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43315743917071875, dt = 0.002628810942882065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.7%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 356.32 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 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.8531994047619045
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.217025650458368e-19,4.508541482064101e-19)
sum a = (2.3318038788405127e-17,3.292747612327546e-17,-8.866269181971611e-17)
sum e = 1.1963618536376146
sum de = 8.673617379884035e-18
Info: CFL hydro = 0.0026378750037211692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026378750037211692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8959e+04 | 13440 | 1 | 1.949e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.5568707393908 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43578625011360084, dt = 0.0026378750037211692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 345.14 us (94.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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.8528273809523812
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.850733069356104e-19,4.7615947900909474e-20)
sum a = (1.5467097340793538e-17,-3.802567673374768e-17,3.8512018239351936e-17)
sum e = 1.1963618210431906
sum de = -7.047314121155779e-18
Info: CFL hydro = 0.0026130136565134417 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026130136565134417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6750e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16351214641506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.438424125117322, dt = 0.00157587488267813 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1273.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 370.89 us (94.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.853199404761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,2.060363028668284e-19,2.795565243113144e-19)
sum a = (-3.1106690190963953e-17,-3.028254497949664e-18,-6.41467675495271e-17)
sum e = 1.1963605835314572
sum de = -3.3610267347050637e-18
Info: CFL hydro = 0.002618780848806213 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002618780848806213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.9300e+04 | 13440 | 1 | 1.939e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.252204046946638 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 1812.854953664 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1915.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1833.67 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4400000000000001, dt = 0.002618780848806213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.07 us (1.8%)
patch tree reduce : 1162.00 ns (0.2%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 535.80 us (95.7%)
LB move op cnt : 0
LB apply : 4.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (76.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8534226190476193
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.6061040547485865e-19,3.5038150342178666e-20)
sum a = (-1.3004244790245867e-17,-9.966407208441933e-19,-2.271190873462248e-17)
sum e = 1.1963616438081623
sum de = -9.75781955236954e-18
Info: CFL hydro = 0.0026145385497143847 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026145385497143847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7339e+04 | 13440 | 1 | 1.996e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.23538662677951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44261878084880635, dt = 0.0026145385497143847 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1523.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 343.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8720982142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.0124476093969286e-19,2.20860135703904e-20)
sum a = (2.183026502002954e-17,-2.1197781485647648e-17,-7.459472472164616e-17)
sum e = 1.1963614746744184
sum de = -5.9631119486702744e-18
Info: CFL hydro = 0.0026092781372656164 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026092781372656164 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7868e+04 | 13440 | 1 | 1.980e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.529195337829385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44523331939852073, dt = 0.0026092781372656164 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.5%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 371.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877157738095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-6.540454730540018e-19,-2.383792108749933e-19)
sum a = (-9.698080860522342e-18,-1.962615573354719e-17,3.6712794245712543e-17)
sum e = 1.1963612741180587
sum de = -9.324138683375338e-18
Info: CFL hydro = 0.0026152051309847406 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026152051309847406 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8063e+04 | 13440 | 1 | 1.975e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.570021666331535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44784259753578637, dt = 0.0026152051309847406 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 356.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 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.8762648809523812
Warning: the unit system is not set [sph::Config][rank=0]
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.4973568522298576e-21)
sum a = (-6.1906721698591235e-18,6.382333846944545e-18,6.455404861333363e-17)
sum e = 1.1963610652203431
sum de = 3.5887091909270197e-17
Info: CFL hydro = 0.0026182957833102787 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026182957833102787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7336e+04 | 13440 | 1 | 1.996e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16900109796385 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4504578026667711, dt = 0.0026182957833102787 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 355.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8651785714285718
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.7143825026882265e-19,2.060363028668284e-19)
sum a = (2.472435634401941e-17,1.715372009914525e-18,-5.521653128282823e-17)
sum e = 1.1963608496451443
sum de = 1.3227266504323154e-17
Info: CFL hydro = 0.0025961739576276562 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025961739576276562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7193e+04 | 13440 | 1 | 2.000e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.124327742736085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4530760984500814, dt = 0.0025961739576276562 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 329.03 us (94.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.864136904761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-4.0847894928830515e-19,-8.549907626232487e-20)
sum a = (1.5764172940275942e-17,4.0299263378173494e-17,7.738340212323904e-19)
sum e = 1.1963606358238392
sum de = 1.2685165418080402e-17
Info: CFL hydro = 0.0025923738827886753 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025923738827886753 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6669e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.36217847110494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4556722724077091, dt = 0.0025923738827886753 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (0.9%)
patch tree reduce : 1333.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 655.97 us (96.9%)
LB move op cnt : 0
LB apply : 4.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8645089285714285
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,3.988958654340341e-19,-1.1754251290004382e-20)
sum a = (-4.40534364780842e-17,2.8298846621662525e-17,-3.9501471647305426e-17)
sum e = 1.1963604758944066
sum de = 1.723881454251952e-17
Info: CFL hydro = 0.002588547353303866 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002588547353303866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6532e+04 | 13440 | 1 | 2.020e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.19914365916538 (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.92 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 366.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.863913690476191
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.0967683477008905e-19,-1.3959109254912847e-19)
sum a = (-8.051707054358568e-17,-4.9515794275018716e-17,1.7503502659826143e-17)
sum e = 1.1963600404155303
sum de = -4.85722573273506e-17
Info: CFL hydro = 0.0025780204123877076 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025780204123877076 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7715e+04 | 13440 | 1 | 1.985e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.475543762496464 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 220 [SPH][rank=0]
Info: time since start : 1821.284395304 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1905.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1825.48 ms [sph::CartesianRender][rank=0]
---------------- t = 0.46000000000000013, dt = 0.0025780204123877076 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.57 us (1.9%)
patch tree reduce : 1443.00 ns (0.3%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 540.70 us (95.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 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.8638392857142858
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.373219517669363e-19,-4.499557340950722e-20)
sum a = (5.011952855783779e-17,-1.3301320389728271e-17,-9.59266693812536e-18)
sum e = 1.1963603228150723
sum de = -1.5070410197548512e-17
Info: CFL hydro = 0.0025832222007187667 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025832222007187667 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4452e+04 | 13440 | 1 | 2.085e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.50689837121832 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4625780204123878, dt = 0.0025832222007187667 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1203.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 363.85 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.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.8704613095238094
Warning: the unit system is not set [sph::Config][rank=0]
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.0649950611484863e-19)
sum a = (1.1595531463668018e-18,2.878758389823035e-17,2.0771334254132584e-17)
sum e = 1.1963602951461196
sum de = -2.233456475320139e-17
Info: CFL hydro = 0.002589778059885715 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002589778059885715 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6000e+04 | 13440 | 1 | 2.036e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.66764402209454 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4651612426131066, dt = 0.002589778059885715 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 361.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 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.8716517857142854
Warning: the unit system is not set [sph::Config][rank=0]
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.3401343827457226e-20)
sum a = (-4.3986354891104295e-17,1.161469763137656e-17,1.5213145618655354e-17)
sum e = 1.1963603168406052
sum de = 1.4094628242311558e-17
Info: CFL hydro = 0.00257620867319019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00257620867319019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6077e+04 | 13440 | 1 | 2.034e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.83670027155053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4677510206729923, dt = 0.00257620867319019 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.4%)
patch tree reduce : 1433.00 ns (0.3%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 406.12 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.73 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8712053571428575
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.6353480599245493e-19,1.9390771236376655e-20)
sum a = (3.6545090278262796e-17,8.310450318423888e-17,3.225905602444005e-18)
sum e = 1.1963603649149195
sum de = -1.9081958235744878e-17
Info: CFL hydro = 0.0025810144332509724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025810144332509724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5169e+04 | 13440 | 1 | 2.062e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.96991698968891 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4703272293461825, dt = 0.0025810144332509724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 334.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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.8734374999999999
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4973568522298576e-19,1.3027004614399762e-20)
sum a = (6.835613713251568e-17,5.0828676763053855e-17,-1.7074659657347513e-17)
sum e = 1.1963604439855826
sum de = 3.491130995403324e-17
Info: CFL hydro = 0.0025819891601565766 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025819891601565766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5617e+04 | 13440 | 1 | 2.048e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.36369906383384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47290824377943347, dt = 0.0025819891601565766 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1593.00 ns (0.4%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 352.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.8667410714285717
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.725892602926975e-19,-5.162137748062434e-20)
sum a = (-1.8404312542127626e-17,5.3665269583918095e-18,-6.36783943261496e-17)
sum e = 1.1963605392308874
sum de = -2.42861286636753e-17
Info: CFL hydro = 0.002558892125537191 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002558892125537191 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3440e+04 | 13440 | 1 | 2.119e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.87536135567239 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47549023293959003, dt = 0.002558892125537191 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 332.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8651041666666666
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.2043436637718954e-19,-2.81690257825742e-19)
sum a = (-1.161469763137656e-17,-6.501164086737507e-17,-9.507617068918703e-18)
sum e = 1.1963606331881982
sum de = -1.8865117801247777e-17
Info: CFL hydro = 0.002561295027283735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002561295027283735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5824e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.11714401323651 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4780491250651272, dt = 0.0019508749348729482 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 365.11 us (95.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
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.8642113095238098
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-5.800760445538468e-19,-2.199617215925661e-19)
sum a = (1.978427661714266e-17,2.1006119808562225e-17,1.002150994060399e-17)
sum e = 1.1963604061454243
sum de = -1.691355389077387e-17
Info: CFL hydro = 0.002560102017302925 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002560102017302925 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7200e+04 | 13440 | 1 | 2.000e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.115828540643854 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 1829.716760194 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1871.49 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1864.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1798.23 ms [sph::CartesianRender][rank=0]
---------------- t = 0.48000000000000015, dt = 0.002560102017302925 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.34 us (1.9%)
patch tree reduce : 1523.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 : 576.58 us (95.4%)
LB move op cnt : 0
LB apply : 4.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (78.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8681547619047618
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.2278326188284832e-19,-1.739554323078037e-19)
sum a = (-2.104445214397931e-17,-3.081919767533582e-17,-1.915418885372434e-17)
sum e = 1.196360806514579
sum de = -1.214306433183765e-17
Info: CFL hydro = 0.0025590176596578364 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025590176596578364 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3391e+04 | 13440 | 1 | 2.120e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.470078160295685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4825601020173031, dt = 0.0025590176596578364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1593.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 359.84 us (94.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877157738095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.659260223002747e-19,-2.6967396908659737e-19)
sum a = (1.4880133454719433e-17,-7.05314971674352e-18,-2.3891825934179607e-17)
sum e = 1.1963609351070235
sum de = -8.456776945386935e-18
Info: CFL hydro = 0.0025561515235863986 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025561515235863986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5030e+04 | 13440 | 1 | 2.067e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.57471067617004 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4851191196769609, dt = 0.0025561515235863986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.30 us (2.0%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 340.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8779761904761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.982969226931421e-20,-3.275842453465871e-19)
sum a = (-2.3157522133846087e-17,-1.2343012004301162e-17,-6.400122446349035e-17)
sum e = 1.1963610407832532
sum de = 1.0083080204115191e-16
Info: CFL hydro = 0.002555300918032148 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002555300918032148 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5538e+04 | 13440 | 1 | 2.051e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.87246203919477 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4876752712005473, dt = 0.002555300918032148 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.7%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 359.80 us (94.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8782738095238096
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.743392130574644e-19,-5.50091473587944e-19)
sum a = (2.7165048013154078e-17,-1.3339652725145356e-17,-2.876542301681735e-17)
sum e = 1.1963611324121672
sum de = 2.211772431870429e-17
Info: CFL hydro = 0.002575248199966517 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002575248199966517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5302e+04 | 13440 | 1 | 2.058e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.696417070262406 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49023057211857946, dt = 0.002575248199966517 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.50 us (2.0%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 360.41 us (94.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (77.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8789434523809525
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.8449780192367296e-19,-5.72664128135309e-19)
sum a = (-1.7399286622910945e-17,5.105867077555636e-17,2.423502012471069e-17)
sum e = 1.1963612199898053
sum de = -2.0383000842727483e-17
Info: CFL hydro = 0.0025860236635263587 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025860236635263587 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6222e+04 | 13440 | 1 | 2.030e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.67958575121449 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.492805820318546, dt = 0.0025860236635263587 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1502.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 365.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8784970238095235
Warning: the unit system is not set [sph::Config][rank=0]
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,-4.404475180834126e-19)
sum a = (8.083331231077663e-18,-3.2812479117024205e-17,-4.860719813708564e-17)
sum e = 1.196361273549442
sum de = -1.5178830414797062e-17
Info: CFL hydro = 0.0025956187340672706 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025956187340672706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7339e+04 | 13440 | 1 | 1.996e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.644546360158834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4953918439820723, dt = 0.0025956187340672706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1332.00 ns (0.3%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 361.38 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8600446428571427
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.20410928648235e-19,-6.663237992422866e-19)
sum a = (2.4642900131258104e-17,-1.1729694637627812e-17,-1.8713366996427868e-17)
sum e = 1.1963612970469022
sum de = 2.949029909160572e-17
Info: CFL hydro = 0.0025925443180015635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025925443180015635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8298e+04 | 13440 | 1 | 1.968e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.48428541730215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4979874627161396, dt = 0.002012537283860527 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.8%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 349.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.855654761904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-6.468581601632985e-19,-6.636285569082729e-19)
sum a = (-2.5749746316426417e-17,-2.9899221625325796e-17,-7.953360656304112e-18)
sum e = 1.1963608120269376
sum de = -1.8648277366750676e-17
Info: CFL hydro = 0.0025890845741873606 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025890845741873606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7581e+04 | 13440 | 1 | 1.989e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.43115246363981 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 236 [SPH][rank=0]
Info: time since start : 1838.075868889 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1900.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1881.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1809.30 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0025890845741873606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.05 us (1.8%)
patch tree reduce : 1252.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 577.41 us (95.9%)
LB move op cnt : 0
LB apply : 4.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.8695684523809528
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8030520273742932e-19,-6.859391740064978e-19)
sum a = (1.7968282226758293e-18,4.745543124635043e-17,-2.303084574414744e-17)
sum e = 1.1963612553117533
sum de = -5.963111948670274e-17
Info: CFL hydro = 0.002594127616300577 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002594127616300577 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6217e+04 | 13440 | 1 | 2.030e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.921712792375835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5025890845741875, dt = 0.002594127616300577 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.06 us (1.9%)
patch tree reduce : 1643.00 ns (0.5%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 343.28 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8770089285714284
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.0311190234923215e-20,-7.667964440269101e-19)
sum a = (-1.586000377881865e-17,1.7479544950190467e-17,2.702429646904447e-18)
sum e = 1.196361229643355
sum de = 9.75781955236954e-17
Info: CFL hydro = 0.0026060116971044493 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026060116971044493 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7252e+04 | 13440 | 1 | 1.998e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.73041316052562 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5051832121904881, dt = 0.0026060116971044493 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 341.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 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.876934523809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.3176740299622746e-19,-7.226992847287407e-19)
sum a = (-4.2568058480672175e-17,-2.928590425865245e-17,5.340772420533456e-18)
sum e = 1.196361209544157
sum de = 1.214306433183765e-17
Info: CFL hydro = 0.0025825991771516957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025825991771516957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7228e+04 | 13440 | 1 | 1.999e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.92780501822642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5077892238875926, dt = 0.0025825991771516957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1413.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 : 364.04 us (94.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 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.8773065476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-7.1154397617962835e-19,-7.086989981603916e-19)
sum a = (3.928585226058433e-17,-3.0512538991999144e-17,-4.617608955180524e-17)
sum e = 1.1963611706132697
sum de = -1.214306433183765e-17
Info: CFL hydro = 0.002576553398050945 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002576553398050945 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7071e+04 | 13440 | 1 | 2.004e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.39747677357552 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5103718230647443, dt = 0.002576553398050945 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 338.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8774553571428576
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.528007121143089e-19,-9.002858074032019e-19)
sum a = (-3.098690164278556e-17,-6.807822770074182e-17,-3.502617148736083e-18)
sum e = 1.1963611594354109
sum de = 2.3418766925686896e-17
Info: CFL hydro = 0.002575852910439618 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002575852910439618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7365e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.491638567753604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5129483764627952, dt = 0.002575852910439618 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 572.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 357.43 us (94.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8775297619047624
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-8.337282953215847e-19,-8.414396831105685e-19)
sum a = (-1.512929363493048e-17,3.649238331706431e-17,-5.809864375200026e-17)
sum e = 1.1963611634110682
sum de = -2.0599841277224584e-17
Info: CFL hydro = 0.0025916555216239923 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025916555216239923 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7191e+04 | 13440 | 1 | 2.000e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.35905752328731 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5155242293732348, dt = 0.0025916555216239923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 347.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735119047619047
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-4.911330475313933e-19,-1.06267415802753e-18)
sum a = (4.795375160677253e-17,-3.7719018050411005e-17,-1.0697117352330102e-17)
sum e = 1.19636118564662
sum de = -2.200930410145574e-17
Info: CFL hydro = 0.002596633526303394 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002596633526303394 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7465e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.833924151999994 (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 : 5.89 us (1.6%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 354.17 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.8635416666666664
Warning: the unit system is not set [sph::Config][rank=0]
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.0264755561248732e-18)
sum a = (2.143256704007729e-17,2.9132574916984108e-18,-3.4108591208314373e-17)
sum e = 1.1963607006839607
sum de = 7.134050294954619e-17
Info: CFL hydro = 0.0026092747237978276 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026092747237978276 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7964e+04 | 13440 | 1 | 1.978e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.29941570971448 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 244 [SPH][rank=0]
Info: time since start : 1846.626668352 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1850.14 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1854.13 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1777.21 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5200000000000001, dt = 0.0026092747237978276 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.66 us (1.8%)
patch tree reduce : 1353.00 ns (0.2%)
gen split merge : 451.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 580.29 us (95.6%)
LB move op cnt : 0
LB apply : 5.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 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.8671874999999998
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.9707559948240377e-19,-1.1418843355104894e-18)
sum a = (2.234535577719661e-17,1.5946251533507093e-17,1.831327324551205e-17)
sum e = 1.1963612033765685
sum de = -9.75781955236954e-19
Info: CFL hydro = 0.0026070764352295922 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026070764352295922 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6387e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.39862818315554 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5226092747237979, dt = 0.0026070764352295922 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.7%)
patch tree reduce : 1723.00 ns (0.5%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 346.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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.8767857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-5.318611539120454e-19,-1.0205609965585652e-18)
sum a = (-1.889544558965902e-17,-7.4978048075817e-17,-1.9743548510762012e-17)
sum e = 1.196361208732868
sum de = 6.5052130349130266e-18
Info: CFL hydro = 0.0025901422623598514 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025901422623598514 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7801e+04 | 13440 | 1 | 1.982e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.347313838231216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5252163511590275, dt = 0.0025901422623598514 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 347.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 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.8767113095238095
Warning: the unit system is not set [sph::Config][rank=0]
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,-1.1220443572184439e-18)
sum a = (-3.398161534724528e-17,1.5639592850170416e-17,-1.9058358015181627e-17)
sum e = 1.1963611986020595
sum de = 4.5102810375396984e-17
Info: CFL hydro = 0.0025704752006895973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025704752006895973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7381e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.74822673443236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5278064934213874, dt = 0.0025704752006895973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 347.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 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.8700892857142855
Warning: the unit system is not set [sph::Config][rank=0]
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.161724313802535e-18)
sum a = (7.53709545138421e-18,3.89456527837577e-17,4.830832570938056e-17)
sum e = 1.196361193712589
sum de = -3.447762908503904e-17
Info: CFL hydro = 0.0025665559270274317 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025665559270274317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6522e+04 | 13440 | 1 | 2.020e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.8014298673529 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5303769686220771, dt = 0.0025665559270274317 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 338.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.871577380952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-2.3478555442964167e-19,-9.617523061872375e-19)
sum a = (1.84953518387432e-17,1.6406239558512103e-17,1.2803000029306174e-17)
sum e = 1.196361214522628
sum de = 4.185020385794047e-17
Info: CFL hydro = 0.002613838126534472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002613838126534472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7574e+04 | 13440 | 1 | 1.989e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.45496022066472 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5329435245491045, dt = 0.002613838126534472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 335.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8776041666666665
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.922840575552682e-19,-9.728327468937384e-19)
sum a = (1.3253404970456915e-17,-1.2113017991798656e-17,4.462842150934046e-17)
sum e = 1.1963612946049407
sum de = -1.6479873021779667e-17
Info: CFL hydro = 0.002609629966421661 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002609629966421661 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7861e+04 | 13440 | 1 | 1.981e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51180493366458 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.535557362675639, dt = 0.002609629966421661 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.3%)
patch tree reduce : 1292.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1362.00 ns (0.4%)
LB compute : 363.95 us (95.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 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.8744791666666667
Warning: the unit system is not set [sph::Config][rank=0]
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,-8.096957178432955e-19)
sum a = (-1.6732064409557322e-17,1.441295811682372e-17,-1.7867659846288444e-17)
sum e = 1.1963613532118207
sum de = -2.1250362580715887e-17
Info: CFL hydro = 0.0025894215171759936 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025894215171759936 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7922e+04 | 13440 | 1 | 1.979e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.47821537880473 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5381669926420607, dt = 0.0018330073579394535 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 332.60 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.8642857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.6770396744974405e-19,-9.251419311502175e-19)
sum a = (-1.2783833861597633e-17,7.66646708341687e-18,-1.9860941287976832e-18)
sum e = 1.1963608319738666
sum de = 4.228388472693467e-18
Info: CFL hydro = 0.0025947883802043296 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025947883802043296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8473e+04 | 13440 | 1 | 1.963e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.61895072787289 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 252 [SPH][rank=0]
Info: time since start : 1854.8665388630002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1849.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1890.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1781.00 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0025947883802043296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.91 us (1.9%)
patch tree reduce : 1292.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 555.21 us (95.6%)
LB move op cnt : 0
LB apply : 4.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.8625
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.108421732114224e-19)
sum a = (3.6894872838943694e-17,-4.937204801720465e-17,2.223754608383606e-17)
sum e = 1.19636144187556
sum de = -5.106592232406726e-17
Info: CFL hydro = 0.0025814591957241356 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025814591957241356 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5002e+04 | 13440 | 1 | 2.068e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.17839487144603 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5425947883802045, dt = 0.0025814591957241356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.5%)
patch tree reduce : 1333.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 362.74 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.8718005952380954
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.1686414766079237e-19,-8.319689010202147e-19)
sum a = (-2.0124476093969287e-17,3.856232942958686e-17,6.706361869767086e-17)
sum e = 1.1963615090032418
sum de = -1.3660947373317356e-17
Info: CFL hydro = 0.0025806925530441195 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025806925530441195 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7790e+04 | 13440 | 1 | 1.983e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.87393942394999 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5451762475759286, dt = 0.0025806925530441195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1313.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 373.25 us (95.2%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8777529761904765
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.959105932661776e-19)
sum a = (-5.790099264750592e-17,2.4226035983597312e-17,-2.0962995931218006e-19)
sum e = 1.1963615598671071
sum de = 8.673617379884035e-18
Info: CFL hydro = 0.0025511458198521956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025511458198521956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6995e+04 | 13440 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.310625077646954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5477569401289728, dt = 0.0025511458198521956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1452.00 ns (0.4%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 372.47 us (94.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877232142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.587432640653194e-19,-6.929393172906723e-19)
sum a = (-1.1595531463668018e-17,1.533293416683374e-17,-5.617603755373712e-17)
sum e = 1.1963615605046367
sum de = 0
Info: CFL hydro = 0.002551504693054869 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002551504693054869 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7825e+04 | 13440 | 1 | 1.982e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.34778962388596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.550308085948825, dt = 0.002551504693054869 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1614.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 344.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.8776041666666667
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.029061818946042e-19)
sum a = (-5.999010492773702e-18,1.2803000029306174e-17,1.0577328804151714e-17)
sum e = 1.1963615665070593
sum de = 5.204170427930421e-18
Info: CFL hydro = 0.0025831353124167785 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025831353124167785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8003e+04 | 13440 | 1 | 1.976e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.476214896858494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5528595906418798, dt = 0.0025831353124167785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 345.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.8775297619047622
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.803989536532473e-19,-7.924012462000406e-19)
sum a = (-7.74313175425104e-18,3.5112419242049267e-17,4.9336111452751133e-17)
sum e = 1.1963615860455796
sum de = 1.848564704087785e-17
Info: CFL hydro = 0.0025973501770129013 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025973501770129013 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8026e+04 | 13440 | 1 | 1.976e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.068054315153205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5554427259542967, dt = 0.0025973501770129013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1162.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 336.82 us (94.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.8753720238095237
Warning: the unit system is not set [sph::Config][rank=0]
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,-6.141783468633818e-19)
sum a = (3.4460769539958833e-17,3.902231745459187e-17,3.876836573245369e-17)
sum e = 1.1963615776386671
sum de = 1.1438332919722072e-17
Info: CFL hydro = 0.0025888023049890603 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025888023049890603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7671e+04 | 13440 | 1 | 1.986e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.07989237475912 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5580400761313096, dt = 0.001959923868690594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 360.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.8575892857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.024895218793857e-19,-5.432504244693188e-19)
sum a = (4.687086313123989e-17,-1.2879664700140343e-17,-2.6449311437788205e-18)
sum e = 1.1963610268412381
sum de = 4.716279450311944e-18
Info: CFL hydro = 0.0025894125304972496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025894125304972496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7898e+04 | 13440 | 1 | 1.979e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.64523571722315 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 1863.159704542 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1850.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1856.42 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1788.04 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0025894125304972496 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.46 us (1.9%)
patch tree reduce : 912.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 515.79 us (95.5%)
LB move op cnt : 0
LB apply : 4.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 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.8560267857142858
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.3416317395979523e-19,-6.046233384500901e-19)
sum a = (2.6171402006014342e-17,-1.5179604825165406e-17,-7.714382502688227e-18)
sum e = 1.1963615184875396
sum de = 8.348356728138384e-18
Info: CFL hydro = 0.0025847900064946733 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025847900064946733 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6406e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.05859514963367 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5625894125304974, dt = 0.0025847900064946733 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.8%)
patch tree reduce : 1272.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.4%)
LB compute : 345.47 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.45 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.857738095238095
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.724955093768796e-19,-6.289647457791517e-19)
sum a = (3.888815428063208e-17,3.3042473129526713e-17,1.4714825258233257e-17)
sum e = 1.1963614853446047
sum de = -1.0299920638612292e-18
Info: CFL hydro = 0.0025814436929365117 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025814436929365117 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7591e+04 | 13440 | 1 | 1.988e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.79721906875374 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5651742025369921, dt = 0.0025814436929365117 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 336.56 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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.8741071428571432
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.133173666733497e-19,-5.654019474019942e-19)
sum a = (1.0579724575115282e-17,2.184943118773808e-17,-1.501190085771566e-17)
sum e = 1.196361447584318
sum de = 1.2847795743953228e-17
Info: CFL hydro = 0.002576691855633417 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002576691855633417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7687e+04 | 13440 | 1 | 1.986e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.802778565371945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5677556462299287, dt = 0.002576691855633417 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 333.03 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8760416666666666
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.4374625781406633e-19,-6.308738757657447e-19)
sum a = (1.8150360819989442e-17,-8.643941636552522e-18,1.2501132887896636e-17)
sum e = 1.1963614000018745
sum de = 1.3200161450011016e-17
Info: CFL hydro = 0.0025673013039901856 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025673013039901856 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7735e+04 | 13440 | 1 | 1.984e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.74997478585372 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.570332338085562, dt = 0.0025673013039901856 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.4%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 343.53 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.8770833333333337
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.740866171449274e-19)
sum a = (2.1969219735916472e-17,8.739772475095234e-18,-2.4408114576828463e-17)
sum e = 1.196361337859319
sum de = -7.823196300840718e-18
Info: CFL hydro = 0.002555677593427167 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002555677593427167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7253e+04 | 13440 | 1 | 1.998e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.248072988503445 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5728996393895522, dt = 0.002555677593427167 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1273.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 367.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8776041666666672
Warning: the unit system is not set [sph::Config][rank=0]
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,-6.742597905591049e-19)
sum a = (2.6864977699967215e-17,6.899820375075184e-18,-2.173443418148683e-17)
sum e = 1.1963612640328365
sum de = -1.5964876989849053e-17
Info: CFL hydro = 0.0025459661398757774 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0025459661398757774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7171e+04 | 13440 | 1 | 2.001e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.98252926418478 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5754553169829794, dt = 0.0025459661398757774 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.7%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 349.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877604166666667
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.858128760502293e-19,-7.14838161254534e-19)
sum a = (1.4448894681277235e-17,1.802578072988392e-17,-2.270232565076821e-17)
sum e = 1.1963611860730885
sum de = 1.1709383462843448e-17
Info: CFL hydro = 0.002564430881414216 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002564430881414216 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7155e+04 | 13440 | 1 | 2.001e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.796595970701375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5780012831228551, dt = 0.0019987168771450348 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 357.38 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8683779761904764
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,3.0665868333667484e-19,-7.620049020997745e-19)
sum a = (3.2232702543840805e-17,-1.1346371283456969e-17,5.85718085173049e-17)
sum e = 1.19636081078969
sum de = 3.469446951953614e-18
Info: CFL hydro = 0.002645648431567349 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002645648431567349 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7714e+04 | 13440 | 1 | 1.985e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.25196813446867 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 268 [SPH][rank=0]
Info: time since start : 1871.603369311 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.40 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1787.57 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5800000000000002, dt = 0.002645648431567349 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.59 us (2.0%)
patch tree reduce : 1352.00 ns (0.2%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 544.06 us (95.3%)
LB move op cnt : 0
LB apply : 4.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (72.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8645089285714287
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.326098323381603e-19)
sum a = (2.1202573027574785e-17,-8.696648597751013e-19,-1.9899273623393915e-17)
sum e = 1.1963611330840243
sum de = 1.5856456772600502e-17
Info: CFL hydro = 0.002655709475773581 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002655709475773581 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3816e+04 | 13440 | 1 | 2.106e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.223747025998236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5826456484315675, dt = 0.002655709475773581 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1312.00 ns (0.3%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 368.55 us (94.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.864732142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.295591338642955e-19,-6.911799229893023e-19)
sum a = (1.81311946522809e-17,5.938637064491794e-17,-3.878753190016223e-17)
sum e = 1.1963610881912508
sum de = -1.2766480581016815e-17
Info: CFL hydro = 0.0026676950877824435 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026676950877824435 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5494e+04 | 13440 | 1 | 2.052e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.589279630771976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5853013579073411, dt = 0.0026676950877824435 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (1.8%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 338.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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.8756696428571429
Warning: the unit system is not set [sph::Config][rank=0]
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,-8.220489118741918e-19)
sum a = (4.885456148907401e-17,6.150423217671185e-17,-3.4487123020558083e-17)
sum e = 1.1963610735880637
sum de = -4.391018798566293e-18
Info: CFL hydro = 0.002649919462151943 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002649919462151943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6131e+04 | 13440 | 1 | 2.032e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.25443454479452 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5879690529951235, dt = 0.002649919462151943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.24 us (2.0%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 331.98 us (93.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8720982142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,9.295591338642955e-19,-9.130882084897672e-19)
sum a = (-1.556292817933625e-17,3.3042473129526713e-17,3.924632203968546e-17)
sum e = 1.1963610704954126
sum de = -3.577867169202165e-18
Info: CFL hydro = 0.002634375639950286 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002634375639950286 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3756e+04 | 13440 | 1 | 2.108e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.25431928009762 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5906189724572755, dt = 0.002634375639950286 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.93 us (2.0%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 332.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 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.8710565476190473
Warning: the unit system is not set [sph::Config][rank=0]
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,-6.998645927322354e-19)
sum a = (4.6861280047385626e-17,3.3253300974320676e-17,-4.539985975960928e-18)
sum e = 1.1963610906203248
sum de = -2.5261910618912253e-17
Info: CFL hydro = 0.0026834192057790377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026834192057790377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3619e+04 | 13440 | 1 | 2.113e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.89218108413448 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5932533480972257, dt = 0.0026834192057790377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (1.8%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 347.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8726190476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.62477546884398e-20,-7.724864000653835e-19)
sum a = (2.4235619067451585e-17,-1.1595531463668018e-17,-9.592067995384467e-18)
sum e = 1.1963611615160252
sum de = 7.108300493358088e-18
Info: CFL hydro = 0.002673967056798644 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002673967056798644 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5662e+04 | 13440 | 1 | 2.047e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.196209071677714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5959367673030048, dt = 0.002673967056798644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.8%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 336.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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.877752976190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,8.049790437587714e-19,-8.106689997972449e-19)
sum a = (-2.8653420724270553e-18,-2.89025809044816e-17,-3.1640947115839564e-17)
sum e = 1.1963612070797232
sum de = 1.6832238727837456e-17
Info: CFL hydro = 0.002667556341756181 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002667556341756181 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5374e+04 | 13440 | 1 | 2.056e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.82361320438229 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5986107343598035, dt = 0.0013892656401967018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 331.94 us (89.2%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.8758184523809522
Warning: the unit system is not set [sph::Config][rank=0]
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,-8.759537585544666e-19)
sum a = (-2.3373141520567186e-17,4.109226356711443e-17,-1.7180073579744494e-17)
sum e = 1.1963606336735446
sum de = -1.0299920638612292e-17
Info: CFL hydro = 0.0026769434899607415 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026769434899607415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6932e+04 | 13440 | 1 | 2.008e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.907133933847778 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 276 [SPH][rank=0]
Info: time since start : 1879.9515218180002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1883.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1885.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1797.70 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6000000000000002, dt = 0.0026769434899607415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.63 us (1.7%)
patch tree reduce : 1512.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 604.78 us (96.0%)
LB move op cnt : 0
LB apply : 4.44 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.8638392857142858
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,8.145621276130425e-19,-9.096442877296385e-19)
sum a = (3.694278825821505e-18,-5.0368688738048845e-17,7.75870426551423e-18)
sum e = 1.1963612548590883
sum de = 3.848917712323541e-18
Info: CFL hydro = 0.002668626654022433 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002668626654022433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3098e+04 | 13440 | 1 | 2.130e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.24347490507902 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6026769434899609, dt = 0.002668626654022433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 340.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 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.8642113095238095
Warning: the unit system is not set [sph::Config][rank=0]
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,-8.645738464775198e-19)
sum a = (-1.7402880279356298e-17,6.51649702090434e-18,6.687794644799436e-18)
sum e = 1.1963612978309293
sum de = 2.0681156440160997e-17
Info: CFL hydro = 0.002659835967080779 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002659835967080779 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5220e+04 | 13440 | 1 | 2.061e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.61965416046816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6053455701439834, dt = 0.002659835967080779 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.7%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 347.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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.869940476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.612327859447051e-19,-8.454076787689776e-19)
sum a = (-6.340407855082109e-18,-1.970282040438136e-17,-3.355277234476665e-18)
sum e = 1.1963613213293545
sum de = -3.7947076036992655e-18
Info: CFL hydro = 0.0027078182514591307 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027078182514591307 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5708e+04 | 13440 | 1 | 2.045e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.81396041572384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6080054061110641, dt = 0.0027078182514591307 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1262.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 351.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764136904761906
Warning: the unit system is not set [sph::Config][rank=0]
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.545415555675797e-19)
sum a = (-1.684346775936322e-17,9.50641918343692e-18,-2.3298872620696584e-18)
sum e = 1.1963613798481272
sum de = 3.686287386450715e-18
Info: CFL hydro = 0.0026990486652442775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026990486652442775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6685e+04 | 13440 | 1 | 2.015e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.36733775734809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6107132243625233, dt = 0.0026990486652442775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 342.93 us (94.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.876190476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.0541392239698198e-19,-8.564881194754786e-19)
sum a = (-6.4302492662159e-18,9.429754512602751e-18,7.464982745380821e-17)
sum e = 1.1963614027127092
sum de = 1.734723475976807e-18
Info: CFL hydro = 0.002689209919171456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002689209919171456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5809e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.57697059606051 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6134122730277676, dt = 0.002689209919171456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.6%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 353.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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.8764880952380953
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.588135772521829e-19)
sum a = (4.216556895879279e-18,-1.4642952129326224e-17,-9.411786230375993e-18)
sum e = 1.1963614265814628
sum de = 2.314771638256552e-17
Info: CFL hydro = 0.00270289115950576 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00270289115950576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6354e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.79646396485124 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.616101482946939, dt = 0.00270289115950576 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1302.00 ns (0.3%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 363.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8758184523809525
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.779094317738616e-19,-6.977682931391136e-19)
sum a = (2.807843569301429e-18,-1.37229760793162e-17,-4.8107080948440865e-18)
sum e = 1.1963614686780424
sum de = 3.230922474006803e-17
Info: CFL hydro = 0.002721437687213166 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002721437687213166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7020e+04 | 13440 | 1 | 2.005e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.52178099610387 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6188043741064447, dt = 0.0011956258935554853 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.7%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 354.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.8748511904761906
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,9.199760500100246e-19,-6.961212006016608e-19)
sum a = (-2.6832634791959047e-17,1.6866227583517116e-18,5.685643650739036e-17)
sum e = 1.196360704380766
sum de = -3.7947076036992655e-18
Info: CFL hydro = 0.0027250952848026436 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027250952848026436 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8008e+04 | 13440 | 1 | 1.976e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.779920168839435 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 284 [SPH][rank=0]
Info: time since start : 1888.3385851050002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1943.56 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1819.23 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6200000000000002, dt = 0.0027250952848026436 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1603.00 ns (0.2%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 618.00 us (93.5%)
LB move op cnt : 0
LB apply : 4.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.54 us (80.2%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,3.449910187537592e-19,-5.026626952935632e-19)
sum a = (1.2170516494924283e-17,-1.433629344598955e-17,4.510158627464509e-17)
sum e = 1.196361507142754
sum de = -4.87890977618477e-18
Info: CFL hydro = 0.002707672043218571 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002707672043218571 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4834e+04 | 13440 | 1 | 2.073e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.324725165308585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6227250952848029, dt = 0.002707672043218571 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.6%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 365.82 us (94.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8550595238095242
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,8.145621276130426e-20,-3.965000944704663e-19)
sum a = (6.8519049558038286e-18,-3.196916773784835e-17,1.1865055697069391e-17)
sum e = 1.1963615314067102
sum de = -2.6020852139652106e-18
Info: CFL hydro = 0.002692533282572988 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002692533282572988 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6743e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.406382601910074 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6254327673280214, dt = 0.002692533282572988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 328.84 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8593005952380954
Warning: the unit system is not set [sph::Config][rank=0]
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,-4.0773027086219024e-19)
sum a = (-7.647300915708328e-18,1.188302397929615e-17,-5.504283788796957e-17)
sum e = 1.196361534416829
sum de = -2.7972416050126014e-17
Info: CFL hydro = 0.0027159733486984377 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027159733486984377 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7069e+04 | 13440 | 1 | 2.004e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.37134437765653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6281253006105945, dt = 0.0027159733486984377 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 327.10 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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.8748511904761906
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.276919924547563e-19,-6.488047240711973e-19)
sum a = (3.622405696914471e-18,-7.20647905841186e-18,-3.8329939646120785e-17)
sum e = 1.1963615581077043
sum de = -2.721347452938616e-17
Info: CFL hydro = 0.0027178827058606464 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027178827058606464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6529e+04 | 13440 | 1 | 2.020e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.399685088659325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6308412739592929, dt = 0.0027178827058606464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 359.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (48.8%)
Warning: High interface/patch volume ratio. [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]
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,-7.335551219074072e-19)
sum a = (-3.984646266605919e-17,3.2965808458692543e-18,-5.6659983288377815e-18)
sum e = 1.1963615599515993
sum de = 1.3444106938820255e-17
Info: CFL hydro = 0.0027037231046400318 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027037231046400318 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7062e+04 | 13440 | 1 | 2.004e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.82164054576877 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335591566651535, dt = 0.0027037231046400318 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 361.63 us (94.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877306547619048
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.372750763090274e-19,-7.091482052160606e-19)
sum a = (-2.7599281500300737e-18,4.975537137137549e-17,-7.558657390056321e-18)
sum e = 1.1963615464869413
sum de = 2.168404344971009e-19
Info: CFL hydro = 0.0027203207446884555 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027203207446884555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6000e+04 | 13440 | 1 | 2.036e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.79780984364528 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6362628797697936, dt = 0.0027203207446884555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.7%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 349.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8775297619047622
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.947735794346539e-19,-7.349027430744141e-19)
sum a = (3.6147392298310546e-17,1.0503059904281113e-17,-2.0628785881800302e-17)
sum e = 1.1963615545913406
sum de = -1.6479873021779667e-17
Info: CFL hydro = 0.0027177645719080237 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027177645719080237 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5694e+04 | 13440 | 1 | 2.046e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.868726545786636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.638983200514482, dt = 0.0010167994855182494 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1333.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1051.00 ns (0.3%)
LB compute : 361.51 us (94.3%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8771577380952384
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.116429269022582e-18,-7.630530518963355e-19)
sum a = (6.646826961322427e-17,-1.24963413459695e-17,-3.3561157543139134e-17)
sum e = 1.1963607168896337
sum de = -3.469446951953614e-18
Info: CFL hydro = 0.002722060278647747 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002722060278647747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8336e+04 | 13440 | 1 | 1.967e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.611652472393423 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 1896.806543722 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1941.53 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1821.74 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6400000000000002, dt = 0.002722060278647747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.46 us (2.0%)
patch tree reduce : 1232.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 546.03 us (95.2%)
LB move op cnt : 0
LB apply : 5.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (76.9%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.947735794346539e-19,-8.639749037366279e-19)
sum a = (-3.081919767533582e-17,5.8265149833968216e-18,-6.237359756511651e-17)
sum e = 1.1963615412826611
sum de = -5.637851296924623e-18
Info: CFL hydro = 0.002721822526752903 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002721822526752903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5822e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.99241844683205 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.642722060278648, dt = 0.002721822526752903 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 339.73 us (94.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.8648065476190476
Warning: the unit system is not set [sph::Config][rank=0]
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,-1.0616260082309691e-18)
sum a = (1.533293416683374e-17,9.199760500100245e-18,-2.0345785436728858e-17)
sum e = 1.1963615417366507
sum de = -2.927345865710862e-18
Info: CFL hydro = 0.002717248152676952 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002717248152676952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4561e+04 | 13440 | 1 | 2.082e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.06902635949653 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6454438828054009, dt = 0.002717248152676952 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 351.65 us (94.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8642857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,7.378974567788739e-19,-1.0718080348261321e-18)
sum a = (1.634874105538648e-17,-2.0239473100220538e-17,4.376474607697428e-18)
sum e = 1.1963615295987888
sum de = 3.642919299551295e-17
Info: CFL hydro = 0.002722346288270006 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002722346288270006 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6460e+04 | 13440 | 1 | 2.022e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.37207108538349 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6481611309580778, dt = 0.002722346288270006 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 347.58 us (94.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8712797619047616
Warning: the unit system is not set [sph::Config][rank=0]
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.0229942014434386e-18)
sum a = (3.070420066908457e-17,-3.9558970150431056e-17,3.091383062839675e-17)
sum e = 1.1963615205947253
sum de = -1.951563910473908e-18
Info: CFL hydro = 0.0027114956791611305 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027114956791611305 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6680e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.62339953090292 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6508834772463479, dt = 0.0027114956791611305 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1303.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 360.71 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.870386904761905
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.953959599045004e-19,-9.03355388950273e-19)
sum a = (-7.881128161752544e-17,5.78051618089632e-17,-4.499257869580276e-18)
sum e = 1.1963614993838012
sum de = -3.480288973678469e-17
Info: CFL hydro = 0.0027254357233772674 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027254357233772674 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6859e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.55928347577327 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.653594972925509, dt = 0.0027254357233772674 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 343.34 us (94.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8717261904761906
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.741803680607453e-19)
sum a = (-3.789151355978788e-17,3.986562883376773e-18,-3.424994169516487e-17)
sum e = 1.1963614975874248
sum de = 1.9081958235744878e-17
Info: CFL hydro = 0.0027378991345490063 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027378991345490063 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6920e+04 | 13440 | 1 | 2.008e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.85365890911188 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6563204086488863, dt = 0.0027378991345490063 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 390.53 us (95.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8739583333333334
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,4.599880250050123e-19,-1.0953914052487523e-18)
sum a = (1.8457019503326117e-17,1.839952100020049e-18,-1.0241920869252226e-17)
sum e = 1.196361504823137
sum de = 4.553649124439119e-18
Info: CFL hydro = 0.0027404621556200905 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027404621556200905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6658e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.88476060625775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6590583077834353, dt = 0.0009416922165649266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 364.08 us (94.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735863095238097
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.0967683477008905e-19,-1.0773482551793826e-18)
sum a = (4.0172287517104405e-17,-2.2999401250250612e-17,6.108736802905106e-17)
sum e = 1.1963607409999706
sum de = 1.0625181290357943e-17
Info: CFL hydro = 0.0027446110057809518 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027446110057809518 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7954e+04 | 13440 | 1 | 1.978e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.140708998220724 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 300 [SPH][rank=0]
Info: time since start : 1905.4735781460001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1893.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1816.57 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6600000000000003, dt = 0.0027446110057809518 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.95 us (2.0%)
patch tree reduce : 1463.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 527.79 us (95.3%)
LB move op cnt : 0
LB apply : 4.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (78.6%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.575922540414445e-19,-8.797720185276528e-19)
sum a = (2.4417697660682735e-17,5.412525760892311e-17,-4.331553902130532e-18)
sum e = 1.1963615173963875
sum de = -1.1492543028346347e-17
Info: CFL hydro = 0.0027476576737581367 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027476576737581367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6195e+04 | 13440 | 1 | 2.030e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.66412773284173 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6627446110057812, dt = 0.0027476576737581367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 691.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 445.59 us (95.5%)
LB move op cnt : 0
LB apply : 4.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8642857142857143
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.79570852728773e-19)
sum a = (-1.0656389245949451e-17,2.6832634791959047e-17,-1.9008046824946705e-17)
sum e = 1.1963615746205367
sum de = 5.5294310796760726e-18
Info: CFL hydro = 0.0027359517057193236 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027359517057193236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6712e+04 | 13440 | 1 | 2.015e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.099012722865204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6654922686795394, dt = 0.0027359517057193236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1553.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 323.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639880952380954
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.366526958391809e-19,-1.0482995322461233e-18)
sum a = (-1.8073696149155273e-17,-6.2865030084018344e-18,-1.5606052056680467e-17)
sum e = 1.1963616324235782
sum de = -1.3227266504323154e-17
Info: CFL hydro = 0.0027378899982585725 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027378899982585725 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6657e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.84900811165233 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6682282203852586, dt = 0.0027378899982585725 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 325.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.867782738095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.511210725364055e-19,-1.0786958763463895e-18)
sum a = (2.6909299462793217e-17,-2.3459389275255625e-17,-1.0713887749075077e-17)
sum e = 1.1963617145231689
sum de = 2.6020852139652106e-18
Info: CFL hydro = 0.0027282787385920293 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027282787385920293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6842e+04 | 13440 | 1 | 2.011e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.0192829843649 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6709661103835172, dt = 0.0027282787385920293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.3%)
LB compute : 346.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8783482142857144
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.007630068435734e-19,-1.1125361412067842e-18)
sum a = (-2.9228405755526823e-17,8.157120976755551e-17,-6.096278793894553e-17)
sum e = 1.1963617962929205
sum de = 2.5153490401663703e-17
Info: CFL hydro = 0.0027303486050952357 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027303486050952357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6997e+04 | 13440 | 1 | 2.006e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.96065012296615 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6736943891221092, dt = 0.0027303486050952357 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1493.00 ns (0.4%)
LB compute : 339.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8793898809523812
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.68396661106454e-19,-1.3364658584577595e-18)
sum a = (-1.2534673681386584e-17,6.485831152570673e-17,-2.778854740642259e-17)
sum e = 1.1963618866485017
sum de = -7.697835424647081e-18
Info: CFL hydro = 0.0027265068852193055 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027265068852193055 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6882e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.91407099218158 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6764247377272045, dt = 0.0027265068852193055 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 348.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.878869047619048
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.2400360771741565e-18,-1.3816111675524896e-18)
sum a = (-1.6099580875175429e-18,7.05314971674352e-18,-5.00967687336839e-17)
sum e = 1.1963619670217007
sum de = 2.5804011705155006e-17
Info: CFL hydro = 0.0027352367038402333 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027352367038402333 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7256e+04 | 13440 | 1 | 1.998e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.1182540863718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6791512446124238, dt = 0.0008487553875764497 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.2%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 364.01 us (95.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8787202380952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.721634909659831e-19,-1.4430027984939137e-18)
sum a = (4.086226955461192e-17,1.7939532975195477e-17,-3.610187265000276e-17)
sum e = 1.196360917676638
sum de = 0
Info: CFL hydro = 0.002737953048462594 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002737953048462594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8481e+04 | 13440 | 1 | 1.963e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.568879898913229 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 308 [SPH][rank=0]
Info: time since start : 1913.8612145250002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1915.99 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.29 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1830.82 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6800000000000003, dt = 0.002737953048462594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.56 us (1.7%)
patch tree reduce : 1333.00 ns (0.2%)
gen split merge : 470.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 608.76 us (95.9%)
LB move op cnt : 0
LB apply : 4.99 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.869717261904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,7.211270600338994e-19,-1.5325447382572593e-18)
sum a = (1.9166167708542177e-20,4.860540130886296e-17,-2.190453391990014e-17)
sum e = 1.1963620368527272
sum de = -2.6129272356900657e-17
Info: CFL hydro = 0.0027200812719815944 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027200812719815944 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6493e+04 | 13440 | 1 | 2.021e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.764614877092676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6827379530484629, dt = 0.0027200812719815944 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 363.08 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.8578125
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0685138497512265e-18,-1.5725241662117965e-18)
sum a = (-5.140366179431012e-17,-3.7259030025405995e-17,1.227113887539413e-17)
sum e = 1.1963621033239185
sum de = -9.378348791999613e-18
Info: CFL hydro = 0.0027270780178387188 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027270780178387188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8176e+04 | 13440 | 1 | 1.971e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.67283325306161 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6854580343204445, dt = 0.0027270780178387188 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1343.00 ns (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 338.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.856696428571429
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1619489173303696e-18,-1.504394429435338e-18)
sum a = (-1.153803296054239e-17,-9.659748525105258e-18,3.3008932336036765e-17)
sum e = 1.19636216451991
sum de = -1.1221492485224971e-17
Info: CFL hydro = 0.0027342101924042956 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027342101924042956 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7815e+04 | 13440 | 1 | 1.982e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.53672470570378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881851123382832, dt = 0.0027342101924042956 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 366.21 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.8587797619047617
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.008619575662032e-18,-1.3744238546617862e-18)
sum a = (-1.4470456619949343e-17,-1.5179604825165406e-17,-1.6674565906431695e-17)
sum e = 1.1963622207487425
sum de = -2.45029690981724e-17
Info: CFL hydro = 0.0027233235253718096 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027233235253718096 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5920e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.27859668902711 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6909193225306874, dt = 0.0027233235253718096 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1493.00 ns (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 337.34 us (94.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741815476190475
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.0062238046984643e-18,-1.4871748256346946e-18)
sum a = (-1.3607979073064945e-17,4.8298742625526285e-17,3.441285412068748e-17)
sum e = 1.1963622522148196
sum de = -2.0383000842727483e-17
Info: CFL hydro = 0.0027138331521894357 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027138331521894357 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7106e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.95140847868867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6936426460560593, dt = 0.0027138331521894357 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.6%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 349.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8753720238095235
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.600817759208302e-19,-1.3432788321354053e-18)
sum a = (5.213197616723472e-17,6.470498218403839e-17,-8.425447324675141e-17)
sum e = 1.196362275280685
sum de = -1.9244588561617704e-17
Info: CFL hydro = 0.002718610169845758 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718610169845758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7244e+04 | 13440 | 1 | 1.999e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.88077951105572 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6963564792082487, dt = 0.002718610169845758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 329.04 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.8754464285714285
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,9.966407208441933e-19,-1.7292974286402625e-18)
sum a = (-9.583083854271088e-18,-4.691877855051125e-17,-5.765183246729487e-17)
sum e = 1.1963623007508026
sum de = 5.502326025363935e-18
Info: CFL hydro = 0.002727274400269188 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002727274400269188 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8168e+04 | 13440 | 1 | 1.972e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.640037637603506 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6990750893780945, dt = 0.0009249106219058056 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 357.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
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.8757440476190474
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.2026770237110216e-18,-1.7248053580835729e-18)
sum a = (9.286008254788685e-18,6.133173666733497e-19,2.3996041971094807e-17)
sum e = 1.1963610671993299
sum de = -1.5937771935536915e-17
Info: CFL hydro = 0.0027305945432045966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027305945432045966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7501e+04 | 13440 | 1 | 1.991e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.723036222401994 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 316 [SPH][rank=0]
Info: time since start : 1922.3219638970002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1958.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1952.83 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1862.45 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7000000000000003, dt = 0.0027305945432045966 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.47 us (1.9%)
patch tree reduce : 1302.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 539.94 us (95.6%)
LB move op cnt : 0
LB apply : 4.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874404761904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.116429269022582e-18,-1.6249316560398415e-18)
sum a = (-3.978896416293356e-17,6.1331736667334966e-18,4.1149762070240055e-17)
sum e = 1.1963623046841698
sum de = 2.930056371142076e-17
Info: CFL hydro = 0.002731338651376809 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002731338651376809 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8092e+04 | 13440 | 1 | 1.974e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.80278583857257 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7027305945432049, dt = 0.002731338651376809 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1363.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 356.56 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8627232142857144
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1499700625125306e-18,-1.4952605526367359e-18)
sum a = (4.072810638065213e-18,-6.2865030084018344e-18,-1.0220358930580115e-17)
sum e = 1.196362293718079
sum de = -7.03376159399971e-18
Info: CFL hydro = 0.0027188998209398867 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027188998209398867 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7779e+04 | 13440 | 1 | 1.983e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.58756335034401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7054619331945816, dt = 0.0027188998209398867 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1543.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 347.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8622023809523809
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.391422177185667e-19,-1.5791125363616078e-18)
sum a = (-3.992791887882049e-17,-8.89310181676357e-18,-1.9285956256720567e-17)
sum e = 1.1963622427280025
sum de = -6.9253413767511596e-18
Info: CFL hydro = 0.0026969549626084323 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026969549626084323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7676e+04 | 13440 | 1 | 1.986e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.28720829564426 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081808330155215, dt = 0.0026969549626084323 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.4%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 344.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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.8626488095238096
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.135595436731124e-18,-1.6632639914569258e-18)
sum a = (-2.852884063416503e-17,2.1466107833567238e-17,-2.8341970499006746e-17)
sum e = 1.1963621671518279
sum de = -4.87890977618477e-19
Info: CFL hydro = 0.0027059108130421832 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027059108130421832 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7093e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.467816032454806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.71087778797813, dt = 0.0027059108130421832 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 337.18 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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.873065476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.2074685656381572e-18,-1.76628214289034e-18)
sum a = (-2.2405250051285806e-17,4.5998802500501224e-18,-4.3114294260365626e-17)
sum e = 1.1963621068762171
sum de = -6.938893903907228e-18
Info: CFL hydro = 0.0027034715382778154 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027034715382778154 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6713e+04 | 13440 | 1 | 2.015e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.35366456426422 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7135836987911721, dt = 0.0027034715382778154 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 342.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.870610119047619
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1116377270954463e-18,-1.8660061092488484e-18)
sum a = (1.0100570382401728e-17,-2.37660479585923e-17,-1.616486563393265e-17)
sum e = 1.196362023800436
sum de = 2.653584817158272e-17
Info: CFL hydro = 0.0027130881685005844 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027130881685005844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7708e+04 | 13440 | 1 | 1.985e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.03005744943907 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7162871703294499, dt = 0.0027130881685005844 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.5%)
patch tree reduce : 1332.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 388.28 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 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.8715029761904765
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.293716320326597e-18,-1.892359589848094e-18)
sum a = (2.7254290481546976e-17,1.7019556925185454e-17,6.96330830560973e-18)
sum e = 1.1963619415109064
sum de = -9.215718466126788e-19
Info: CFL hydro = 0.002708619955665567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002708619955665567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6580e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.385335359410114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7190002584979505, dt = 0.0009997415020498446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 342.77 us (94.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.8723958333333333
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,9.295591338642955e-19,-1.8354600294633596e-18)
sum a = (-3.7872347392079344e-17,1.0273065891778608e-17,3.5050129196996506e-17)
sum e = 1.1963610095189117
sum de = -3.0899761915836876e-18
Info: CFL hydro = 0.002697219802368361 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002697219802368361 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7635e+04 | 13440 | 1 | 1.987e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.11180531113461 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 1930.8762941530001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.17 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7200000000000003, dt = 0.002697219802368361 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.21 us (1.8%)
patch tree reduce : 1022.00 ns (0.2%)
gen split merge : 631.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 552.83 us (95.7%)
LB move op cnt : 0
LB apply : 4.89 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (77.8%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.487253015728379e-19,-1.737532891327527e-18)
sum a = (3.971229949209939e-17,3.2812479117024205e-17,4.171995555956918e-17)
sum e = 1.1963618217629766
sum de = 9.269928574751063e-18
Info: CFL hydro = 0.002705965412063857 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002705965412063857 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4720e+04 | 13440 | 1 | 2.077e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.75857533671176 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7226972198023687, dt = 0.002705965412063857 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.11 us (2.0%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 335.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865550595238095
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,8.337282953215847e-19,-1.5997760609223799e-18)
sum a = (-2.307606592108478e-17,-2.4532694666933987e-18,1.405359247228855e-17)
sum e = 1.196361720152014
sum de = -1.6263032587282567e-18
Info: CFL hydro = 0.002697627502226255 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002697627502226255 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5818e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.705456682182465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7254031852144325, dt = 0.002697627502226255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1182.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 353.02 us (94.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.863764880952381
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0733053916783619e-18,-1.6141506867037864e-18)
sum a = (4.603713483591831e-17,1.1959688650130319e-17,7.660477656007952e-17)
sum e = 1.1963616226124387
sum de = 3.241764495731658e-17
Info: CFL hydro = 0.0027043841970115384 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027043841970115384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6095e+04 | 13440 | 1 | 2.033e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.75861905703044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7281008127166587, dt = 0.0027043841970115384 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 331.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 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.8628720238095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.3799640750150368e-18,-1.3227650432598563e-18)
sum a = (-1.602291620434126e-17,-9.046431158431908e-18,3.4108591208314373e-17)
sum e = 1.1963615437243256
sum de = -4.607859233063394e-18
Info: CFL hydro = 0.002715303853334981 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715303853334981 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5927e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.75701484793831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7308051969136703, dt = 0.002715303853334981 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1393.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 360.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 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.8722470238095235
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4470456619949344e-18,-1.2856305933245557e-18)
sum a = (-3.014838180553684e-17,6.899820375075184e-18,2.001427062964517e-17)
sum e = 1.1963614796652824
sum de = -1.4799359654427136e-17
Info: CFL hydro = 0.002713928994922633 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002713928994922633 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6254e+04 | 13440 | 1 | 2.029e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.18763092431867 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7335205007670053, dt = 0.002713928994922633 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 1021.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 346.43 us (94.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8768601190476188
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.3607979073064945e-18,-1.260474998207094e-18)
sum a = (-3.515075157746635e-17,3.158584438367751e-17,5.063461931500486e-17)
sum e = 1.1963614272536929
sum de = 4.8138576458356397e-17
Info: CFL hydro = 0.0027078512809554462 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027078512809554462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4885e+04 | 13440 | 1 | 2.071e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16801591214596 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7362344297619279, dt = 0.0027078512809554462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1283.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 355.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.8769345238095236
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.2649670687637836e-18,-1.0760006340123757e-18)
sum a = (-1.859118267728591e-18,2.368938328775813e-17,-6.111252362416851e-17)
sum e = 1.1963613938632152
sum de = -7.806255641895632e-18
Info: CFL hydro = 0.0027101993884277487 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027101993884277487 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5962e+04 | 13440 | 1 | 2.038e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.84331856003826 (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 : 6.53 us (1.8%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1473.00 ns (0.4%)
LB compute : 342.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8765624999999997
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.514127248974832e-18,-1.2868284788063396e-18)
sum a = (7.254394477683214e-18,-7.589802412582703e-18,-3.34078282014708e-17)
sum e = 1.196360934874284
sum de = 2.47198095326695e-17
Info: CFL hydro = 0.002715247347567789 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715247347567789 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7308e+04 | 13440 | 1 | 1.997e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.06950974757959 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 332 [SPH][rank=0]
Info: time since start : 1939.789896169 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1982.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1976.84 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1892.07 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7400000000000003, dt = 0.002715247347567789 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.53 us (1.9%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 526.30 us (95.5%)
LB move op cnt : 0
LB apply : 4.27 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.29 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.87641369047619
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.6866227583517116e-18,-1.36858416293809e-18)
sum a = (1.9405744804898954e-17,8.663107804261064e-18,-2.0764146941241882e-17)
sum e = 1.1963613816008438
sum de = -1.3444106938820255e-17
Info: CFL hydro = 0.002719829891787212 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002719829891787212 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4978e+04 | 13440 | 1 | 2.068e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.25854462068857 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7427152473475681, dt = 0.002719829891787212 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 323.68 us (94.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (60.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8743303571428571
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.2266347333466993e-18,-1.4176974676912293e-18)
sum a = (-4.030165914913706e-17,-6.1331736667334966e-18,-1.9597406481984375e-18)
sum e = 1.1963614061893917
sum de = 1.9895109865109006e-17
Info: CFL hydro = 0.0027019972146422656 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027019972146422656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5784e+04 | 13440 | 1 | 2.043e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.92513130192285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7454350772393553, dt = 0.0027019972146422656 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 320.25 us (94.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.857217261904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.5812088359547296e-18,-1.4015260136871468e-18)
sum a = (-5.912762738085262e-18,-8.27978445009022e-18,-1.721840591516158e-17)
sum e = 1.1963614356246968
sum de = 8.782037597132586e-18
Info: CFL hydro = 0.002721051581059268 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002721051581059268 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5731e+04 | 13440 | 1 | 2.045e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.57308089130716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7481370744539976, dt = 0.002721051581059268 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (2.0%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 326.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.8555059523809523
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.629124255226085e-18,-1.461719759146787e-18)
sum a = (-5.1556991135978454e-18,-4.086226955461192e-17,3.937449578623634e-17)
sum e = 1.1963614936536375
sum de = -1.0787811616230769e-17
Info: CFL hydro = 0.0027148294005358196 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027148294005358196 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5835e+04 | 13440 | 1 | 2.041e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.9837176056144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7508581260350569, dt = 0.0027148294005358196 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 1492.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 361.96 us (94.5%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8612351190476193
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.3703809911607657e-18,-1.2784432804338525e-18)
sum a = (2.0891122802310974e-17,1.832285632936632e-17,3.8770761503417256e-17)
sum e = 1.1963615529462963
sum de = -4.391018798566293e-18
Info: CFL hydro = 0.0027240638750675845 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027240638750675845 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5815e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.85981301076758 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7535729554355927, dt = 0.0027240638750675845 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 336.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.3320486557436814e-18,-1.1733288294073165e-18)
sum a = (-9.23809283551733e-18,6.24817067298475e-18,-3.821254686890597e-18)
sum e = 1.1963616265265533
sum de = 1.0842021724855044e-18
Info: CFL hydro = 0.0026821351100923805 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026821351100923805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6217e+04 | 13440 | 1 | 2.030e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.31586426768521 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7562970193106603, dt = 0.0026821351100923805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 330.51 us (94.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.874330357142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.2745501526180548e-18,-1.241608301868998e-18)
sum a = (-1.0848050923034873e-17,2.1351110827315987e-17,3.455420460753798e-17)
sum e = 1.1963616788817744
sum de = 1.7618285302889447e-17
Info: CFL hydro = 0.002690296015808094 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002690296015808094 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6146e+04 | 13440 | 1 | 2.032e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.52122474723628 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7589791544207527, dt = 0.0010208455792476423 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 348.88 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874404761904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.3607979073064945e-18,-1.146975348808071e-18)
sum a = (-1.2113017991798656e-17,-9.180594332391703e-17,2.6856592501594725e-18)
sum e = 1.1963610959717759
sum de = 3.0926866970149014e-17
Info: CFL hydro = 0.002694699973330567 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002694699973330567 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7892e+04 | 13440 | 1 | 1.980e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.564406112155158 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 340 [SPH][rank=0]
Info: time since start : 1948.444710185 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.98 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1923.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1844.94 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7600000000000003, dt = 0.002694699973330567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.65 us (1.8%)
patch tree reduce : 1112.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 575.24 us (95.6%)
LB move op cnt : 0
LB apply : 5.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (77.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8750744047619043
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,8.62477546884398e-19,-1.1523658334760984e-18)
sum a = (2.595099107736611e-17,-4.093893422544609e-17,-1.705549348963897e-17)
sum e = 1.196361751175015
sum de = 2.9815559743351372e-18
Info: CFL hydro = 0.0026970728153279957 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026970728153279957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4571e+04 | 13440 | 1 | 2.081e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.60706174636311 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.762694699973331, dt = 0.0026970728153279957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.91 us (1.8%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 352.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.875297619047619
Warning: the unit system is not set [sph::Config][rank=0]
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,-1.2308273325329429e-18)
sum a = (-3.925231146709438e-17,-6.547162889238007e-17,-1.458066208427346e-17)
sum e = 1.1963618412360537
sum de = -1.6154612370034016e-17
Info: CFL hydro = 0.0026903725207967706 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026903725207967706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6001e+04 | 13440 | 1 | 2.036e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.68124077714427 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.765391772788659, dt = 0.0026903725207967706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 333.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 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.8623511904761902
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,1.1020546432411752e-18,-1.2684109895239123e-18)
sum a = (1.100138026470321e-17,2.4609359337768156e-17,5.045254072177371e-17)
sum e = 1.1963619025785854
sum de = 9.242823520438925e-18
Info: CFL hydro = 0.002686949684520472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002686949684520472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5225e+04 | 13440 | 1 | 2.061e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.0036257172884 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7680821453094557, dt = 0.002686949684520472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.41 us (1.7%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1432.00 ns (0.4%)
LB compute : 359.20 us (94.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8613095238095236
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.241452114673136e-19,-1.051294245950583e-18)
sum a = (1.381880691785891e-17,4.645879052550624e-17,-7.287935271173164e-18)
sum e = 1.196361957938706
sum de = -3.645629804982509e-18
Info: CFL hydro = 0.0026871411026578315 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026871411026578315 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6091e+04 | 13440 | 1 | 2.034e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.56674477950683 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7707690949939762, dt = 0.0026871411026578315 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 350.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.8616071428571428
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.1499700625125306e-18,-1.1483229699750779e-18)
sum a = (3.124085336492375e-18,-5.216072541879753e-17,3.285081145244129e-17)
sum e = 1.1963620065329896
sum de = -2.7850443305721395e-18
Info: CFL hydro = 0.0027168977601497793 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027168977601497793 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5941e+04 | 13440 | 1 | 2.038e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.46245919446285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.773456236096634, dt = 0.0027168977601497793 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.4%)
LB compute : 327.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8720982142857145
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,9.295591338642955e-19,-1.0012825270861057e-18)
sum a = (4.2491393809838005e-17,1.5692299811368908e-18,-1.4724408342087526e-17)
sum e = 1.1963620673632842
sum de = -2.623006927762392e-17
Info: CFL hydro = 0.002715423131851485 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002715423131851485 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6557e+04 | 13440 | 1 | 2.019e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.43590196773034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7761731338567839, dt = 0.002715423131851485 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 342.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 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.8694940476190478
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,1.0349730562612776e-18,-1.1191245113565955e-18)
sum a = (5.192114832244076e-17,-1.8437853335617574e-17,5.9558866154294815e-18)
sum e = 1.1963620991560848
sum de = -1.7733481783716032e-17
Info: CFL hydro = 0.0027154243733455872 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027154243733455872 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6478e+04 | 13440 | 1 | 2.022e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.352335458318386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7788885569886353, dt = 0.0011114430113650098 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1653.00 ns (0.5%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 331.85 us (94.0%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8697172619047622
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.133173666733497e-19,-1.0692625281773413e-18)
sum a = (-1.3339652725145356e-17,1.258258910065794e-17,-2.4019999680730483e-17)
sum e = 1.1963612779408017
sum de = 1.3654171109739321e-17
Info: CFL hydro = 0.002716280475367215 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002716280475367215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7447e+04 | 13440 | 1 | 1.993e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.079447815647562 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 348 [SPH][rank=0]
Info: time since start : 1956.9453551130002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1951.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1952.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.43 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7800000000000004, dt = 0.002716280475367215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.13 us (2.0%)
patch tree reduce : 1473.00 ns (0.3%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.2%)
LB compute : 534.58 us (94.9%)
LB move op cnt : 0
LB apply : 5.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (79.0%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.082888475532633e-18,-1.156857904032788e-18)
sum a = (-6.18492231954656e-17,-1.1212208109497174e-17,4.6837322337749944e-17)
sum e = 1.1963621164641822
sum de = -2.6156377411212794e-17
Info: CFL hydro = 0.0027129334523933726 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027129334523933726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.2993e+04 | 13440 | 1 | 2.134e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.83233648118597 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7827162804753676, dt = 0.0027129334523933726 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1392.00 ns (0.3%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.3%)
LB compute : 390.57 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8734374999999999
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,8.433113791758558e-19,-9.25965477418944e-19)
sum a = (2.165776951065266e-17,3.398161534724528e-17,2.3286893765878747e-18)
sum e = 1.1963621437723566
sum de = 2.959871930885427e-17
Info: CFL hydro = 0.0027189206407590635 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027189206407590635 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6057e+04 | 13440 | 1 | 2.035e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.00233109366834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7854292139277609, dt = 0.0027189206407590635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 347.60 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.870576369899221e-19,-9.873571083603682e-19)
sum a = (2.26064948122255e-17,-4.2472227642129466e-17,6.096278793894553e-17)
sum e = 1.1963621663545485
sum de = 1.8973538018496328e-17
Info: CFL hydro = 0.0027109948011856404 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027109948011856404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6856e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.690189295289564 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.78814813456852, dt = 0.0027109948011856404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1583.00 ns (0.4%)
gen split merge : 590.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 395.05 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.612327859447051e-19,-7.404429634276646e-19)
sum a = (3.794901206291351e-17,-3.729736236082308e-17,-1.6106768188066133e-17)
sum e = 1.1963621784163447
sum de = 5.8817967857338616e-18
Info: CFL hydro = 0.0027039894862640836 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027039894862640836 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6280e+04 | 13440 | 1 | 2.028e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.12974689461814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7908591293697056, dt = 0.0027039894862640836 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 337.63 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (65.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8619791666666667
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.487253015728379e-19,-8.83290807130393e-19)
sum a = (1.2113017991798656e-17,-4.868206597969713e-18,7.405328048387984e-18)
sum e = 1.1963621917917078
sum de = 2.4936649967166602e-18
Info: CFL hydro = 0.0027387170902883977 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027387170902883977 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6470e+04 | 13440 | 1 | 2.022e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.14282985543771 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7935631188559696, dt = 0.0027387170902883977 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.85 us (1.4%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 335.67 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8738095238095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,1.2553839849095127e-18,-8.303592424040676e-19)
sum a = (9.50641918343692e-18,-9.736413195939425e-18,-1.0168849854863409e-17)
sum e = 1.19636223953621
sum de = 6.315477654728063e-18
Info: CFL hydro = 0.002728357961433306 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002728357961433306 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6894e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.5% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.07236011153658 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.796301835946258, dt = 0.002728357961433306 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 330.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 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.8752976190476192
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.049790437587714e-19,-8.805206969537677e-19)
sum a = (2.1600271007527034e-17,6.133173666733497e-19,-1.3526522860303641e-17)
sum e = 1.1963622577825566
sum de = 9.893344823930228e-18
Info: CFL hydro = 0.0027341828665956194 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027341828665956194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6617e+04 | 13440 | 1 | 2.018e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.68441958167772 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7990301939076914, dt = 0.0009698060923090113 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1643.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 : 351.06 us (94.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8756696428571427
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,7.474805406331449e-19,-8.98638714865749e-19)
sum a = (1.0733053916783619e-17,5.1940314490149304e-17,-3.684695741967234e-18)
sum e = 1.1963613370884156
sum de = -3.496552006265752e-18
Info: CFL hydro = 0.0027292889590066973 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027292889590066973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6887e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.37529881803412 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 1965.676685411 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1913.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1918.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1834.46 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8000000000000004, dt = 0.0027292889590066973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.20 us (2.1%)
patch tree reduce : 1382.00 ns (0.3%)
gen split merge : 480.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 514.37 us (95.1%)
LB move op cnt : 0
LB apply : 4.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (76.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8773065476190476
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.055265563860063e-19)
sum a = (8.27978445009022e-18,-7.69329971820883e-17,-4.348923241616398e-17)
sum e = 1.1963622808025691
sum de = -1.7970651008947236e-17
Info: CFL hydro = 0.00271553635577178 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00271553635577178 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3119e+04 | 13440 | 1 | 2.129e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.14405479761398 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8027292889590071, dt = 0.00271553635577178 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 344.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 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.8774553571428572
Warning: the unit system is not set [sph::Config][rank=0]
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,-1.0748027485305918e-18)
sum a = (-4.101559889628026e-17,4.5615479146330385e-18,3.3450952078815017e-17)
sum e = 1.1963623217646224
sum de = 5.692061405548898e-18
Info: CFL hydro = 0.002718889404795711 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002718889404795711 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6585e+04 | 13440 | 1 | 2.018e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.432645544006846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8054448253147789, dt = 0.002718889404795711 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1053.00 ns (0.3%)
LB compute : 367.31 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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.8730654761904764
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.145621276130425e-19,-8.959434725317353e-19)
sum a = (8.337282953215848e-18,9.544751518854004e-18,-1.6660191280650286e-17)
sum e = 1.196362369326795
sum de = -1.2739375526704677e-18
Info: CFL hydro = 0.002730180244303728 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002730180244303728 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6652e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.540744912857555 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8081637147195746, dt = 0.002730180244303728 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 370.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8582589285714288
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1499700625125306e-18,-9.908010291204968e-19)
sum a = (-3.610905996289346e-17,-7.559136544249035e-17,4.985719163732712e-17)
sum e = 1.1963624257617573
sum de = 1.7536970139953034e-17
Info: CFL hydro = 0.002712636052087074 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002712636052087074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6296e+04 | 13440 | 1 | 2.027e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.48198789848236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8108938949638783, dt = 0.002712636052087074 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1583.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 350.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8581845238095234
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.366526958391809e-19,-7.709890432131537e-19)
sum a = (-7.685633251125413e-18,-2.2232754541908927e-18,-2.3561209541207254e-17)
sum e = 1.1963624546768312
sum de = -6.80336863234654e-18
Info: CFL hydro = 0.0026991825690151783 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026991825690151783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6934e+04 | 13440 | 1 | 2.008e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.63407886730933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8136065310159654, dt = 0.0026991825690151783 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.67 us (1.9%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 339.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8648809523809522
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.474805406331449e-19,-9.25216798992829e-19)
sum a = (2.8557589885727846e-18,5.213197616723472e-18,5.4179162455603386e-17)
sum e = 1.1963624781120037
sum de = -2.3445871979999033e-17
Info: CFL hydro = 0.002737322345313588 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002737322345313588 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6855e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.33578994523916 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8163057135849805, dt = 0.002737322345313588 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1213.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 390.37 us (95.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
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.8754464285714285
Warning: the unit system is not set [sph::Config][rank=0]
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,-6.648264423900568e-19)
sum a = (-3.608989379518492e-17,2.2999401250250612e-17,-3.432421059503547e-17)
sum e = 1.196362536782279
sum de = 2.710505431213761e-19
Info: CFL hydro = 0.002717935155698735 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002717935155698735 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6376e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.66752938055794 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.819043035930294, dt = 0.0009569640697063564 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 354.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8763392857142855
Warning: the unit system is not set [sph::Config][rank=0]
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.256425683195435e-19)
sum a = (1.864868118041154e-17,1.1423035954291138e-17,-3.766151954728538e-18)
sum e = 1.1963614667583924
sum de = 1.4203048459560108e-17
Info: CFL hydro = 0.002713496074849486 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002713496074849486 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6117e+04 | 13440 | 1 | 2.033e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.947736201242506 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 364 [SPH][rank=0]
Info: time since start : 1974.1471626510001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1951.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.28 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1872.21 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8200000000000004, dt = 0.002713496074849486 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.11 us (2.0%)
patch tree reduce : 1293.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 534.85 us (95.6%)
LB move op cnt : 0
LB apply : 4.06 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.8764880952380953
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,6.324835343818918e-19,-8.141129205573736e-19)
sum a = (2.4494362331516902e-17,-2.8365928208642422e-18,9.151845080828889e-18)
sum e = 1.1963625175240316
sum de = 6.396792817664476e-18
Info: CFL hydro = 0.002698201696714052 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002698201696714052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6669e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.45720226411602 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8227134960748499, dt = 0.002698201696714052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 355.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8774553571428572
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,4.791541927135544e-19,-7.761549243533467e-19)
sum a = (-2.2596911728371226e-17,-2.7139293475295722e-17,1.8112028484572356e-18)
sum e = 1.196362516491338
sum de = 1.588356182691264e-17
Info: CFL hydro = 0.0027236456479483766 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027236456479483766 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6899e+04 | 13440 | 1 | 2.009e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.35002568998221 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.825411697771564, dt = 0.0027236456479483766 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 335.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.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.8761160714285718
Warning: the unit system is not set [sph::Config][rank=0]
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,-7.940483387374935e-19)
sum a = (5.746017079020945e-17,-1.9166167708542177e-18,5.520814608445574e-17)
sum e = 1.1963625393409247
sum de = 3.122502256758253e-17
Info: CFL hydro = 0.0027203654043325876 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027203654043325876 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6681e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.64725233415738 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8281353434195123, dt = 0.0027203654043325876 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1673.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 337.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.8639880952380954
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.366526958391809e-19,-5.645784011332678e-19)
sum a = (-4.6137757216388154e-17,4.193557494629029e-17,-5.749850312562653e-19)
sum e = 1.1963625376516538
sum de = 7.26415455565288e-18
Info: CFL hydro = 0.002721376845198565 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002721376845198565 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6817e+04 | 13440 | 1 | 2.011e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.687393539080844 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.830855708823845, dt = 0.002721376845198565 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 1282.00 ns (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1483.00 ns (0.4%)
LB compute : 354.62 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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.8629464285714286
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,9.870576369899221e-19,-6.342803626045677e-19)
sum a = (-2.707700343024296e-17,-9.966407208441932e-18,-5.435525162142561e-17)
sum e = 1.1963625404290814
sum de = 1.111307226797642e-17
Info: CFL hydro = 0.0027261935811478026 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027261935811478026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6680e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.60545096353767 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8335770856690435, dt = 0.0027261935811478026 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1554.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 353.49 us (94.7%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.864732142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.4916018021104833e-19,-8.609053221895566e-19)
sum a = (2.8653420724270553e-18,-1.663623357101461e-17,-2.6085154251325903e-17)
sum e = 1.1963625462392902
sum de = -1.328147661294743e-17
Info: CFL hydro = 0.0027313104527088004 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027313104527088004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6359e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.45763884056085 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8363032792501913, dt = 0.0027313104527088004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 342.04 us (94.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.874107142857143
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.027190122880753e-19)
sum a = (-3.6137809214456274e-17,-3.350246115453172e-17,9.151845080828889e-18)
sum e = 1.196362549293603
sum de = 1.610040226140974e-17
Info: CFL hydro = 0.0027115369789117317 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027115369789117317 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5835e+04 | 13440 | 1 | 2.041e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.16483726671213 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8390345897029001, dt = 0.0009654102971002887 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1432.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 346.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 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.8721726190476191
Warning: the unit system is not set [sph::Config][rank=0]
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,-8.384449694061087e-19)
sum a = (1.6032499288195532e-17,1.1193041941788632e-17,1.717288626685379e-17)
sum e = 1.1963615336363602
sum de = 1.2630955309456127e-17
Info: CFL hydro = 0.0026854321316562854 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026854321316562854 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7473e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.447960691245015 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 372 [SPH][rank=0]
Info: time since start : 1982.706582189 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1970.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1965.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1876.67 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8400000000000004, dt = 0.0026854321316562854 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.52 us (1.8%)
patch tree reduce : 1633.00 ns (0.3%)
gen split merge : 582.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 545.72 us (95.5%)
LB move op cnt : 0
LB apply : 4.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 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.8720238095238098
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.487253015728379e-19,-7.861123474206752e-19)
sum a = (4.9333715681787565e-17,5.0675347421385516e-17,-1.04743106527183e-17)
sum e = 1.1963624900417378
sum de = -2.47198095326695e-17
Info: CFL hydro = 0.0026911168732520877 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026911168732520877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5070e+04 | 13440 | 1 | 2.065e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.80532884260375 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8426854321316567, dt = 0.0026911168732520877 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 340.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.8734375000000003
Warning: the unit system is not set [sph::Config][rank=0]
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.453328109263661e-19)
sum a = (-2.4935184188813372e-17,-4.13989222504511e-18,-5.068493050523979e-17)
sum e = 1.1963624827733097
sum de = 5.095750210681871e-18
Info: CFL hydro = 0.002692094333835979 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002692094333835979 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4884e+04 | 13440 | 1 | 2.071e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.77075762791389 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8453765490049088, dt = 0.002692094333835979 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.71 us (7.2%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 341.84 us (89.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8767113095238093
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,7.666467083416871e-19,-1.0544386953402657e-18)
sum a = (-1.5026275483497067e-17,-5.213197616723472e-18,-4.772375759427002e-17)
sum e = 1.1963624616863173
sum de = 2.2768245622195593e-18
Info: CFL hydro = 0.0026828652109072 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026828652109072 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5922e+04 | 13440 | 1 | 2.039e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.5358747207234 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8480686433387448, dt = 0.0026828652109072 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.8%)
patch tree reduce : 1573.00 ns (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 336.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8662202380952382
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,7.762297921959581e-19,-1.1606012961633627e-18)
sum a = (-1.24963413459695e-17,-2.315273059191895e-17,2.4178120564325958e-17)
sum e = 1.1963624314202588
sum de = -3.1956859034010243e-17
Info: CFL hydro = 0.0026945524823045472 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026945524823045472 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5278e+04 | 13440 | 1 | 2.059e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.91032142968364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.850751508549652, dt = 0.0026945524823045472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.31 us (1.7%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 347.62 us (94.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.866592261904762
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.7374027031657247e-19,-9.98587284752092e-19)
sum a = (-2.130319540804463e-17,-1.6866227583517116e-17,2.81071849445771e-17)
sum e = 1.1963624193285323
sum de = 1.111307226797642e-18
Info: CFL hydro = 0.0027088784639397 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027088784639397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5754e+04 | 13440 | 1 | 2.044e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.45856643730781 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8534460610319565, dt = 0.0027088784639397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.9%)
patch tree reduce : 1693.00 ns (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 328.85 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.8665178571428571
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.193771072691325e-19)
sum a = (2.552933538777818e-17,-2.2232754541908925e-17,-5.46235779693452e-18)
sum e = 1.1963624144128395
sum de = 9.507097799982267e-18
Info: CFL hydro = 0.0027180963016132714 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027180963016132714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5633e+04 | 13440 | 1 | 2.048e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.6225445553198 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8561549394958963, dt = 0.0027180963016132714 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 372.21 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.63 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8745535714285715
Warning: the unit system is not set [sph::Config][rank=0]
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,-9.831645091741244e-19)
sum a = (-6.49493508223223e-18,-4.8375407296360455e-17,3.988479500147627e-17)
sum e = 1.1963624128773886
sum de = 7.80794970779014e-18
Info: CFL hydro = 0.0027085582255000546 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027085582255000546 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6152e+04 | 13440 | 1 | 2.032e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.162461719268855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8588730357975095, dt = 0.001126964202490921 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 336.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8783482142857142
Warning: the unit system is not set [sph::Config][rank=0]
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.698145954603243e-19)
sum a = (-3.0450248946946384e-17,1.6176245546009598e-17,1.6176245546009598e-17)
sum e = 1.1963616126330792
sum de = 1.0333801956502464e-17
Info: CFL hydro = 0.002701028816869961 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002701028816869961 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7366e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.33542767006572 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 380 [SPH][rank=0]
Info: time since start : 1991.371976138 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.08 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1908.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1828.06 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8600000000000004, dt = 0.002701028816869961 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.91 us (1.9%)
patch tree reduce : 1382.00 ns (0.2%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 539.97 us (95.4%)
LB move op cnt : 0
LB apply : 4.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (77.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8808035714285714
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.51649702090434e-19,-8.40915608212288e-19)
sum a = (4.199307344941591e-17,6.976485045909353e-18,-7.30230989695457e-18)
sum e = 1.1963623871571312
sum de = -2.9991742596380266e-17
Info: CFL hydro = 0.0026824347485011734 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026824347485011734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4950e+04 | 13440 | 1 | 2.069e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.990826944540814 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8627010288168704, dt = 0.0026824347485011734 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 331.77 us (94.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8810267857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.749850312562653e-19,-8.771516440362505e-19)
sum a = (-1.77670374658186e-17,3.687570667123515e-17,1.2122601075652927e-17)
sum e = 1.1963623857829295
sum de = 1.2441219929271163e-17
Info: CFL hydro = 0.0026679140869712106 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026679140869712106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5543e+04 | 13440 | 1 | 2.051e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.09356665750663 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8653834635653715, dt = 0.0026679140869712106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.88 us (1.8%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 352.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.8796875000000002
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,5.462357796934521e-19,-8.418140223236259e-19)
sum a = (-1.7939532975195477e-17,9.199760500100245e-18,8.265888978501527e-17)
sum e = 1.196362382897287
sum de = 1.8973538018496328e-18
Info: CFL hydro = 0.002723357500182247 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002723357500182247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5975e+04 | 13440 | 1 | 2.037e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.14692757687088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680513776523427, dt = 0.002723357500182247 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1222.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 341.61 us (94.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8654761904761907
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,-2.587432640653194e-19,-5.25272783762234e-19)
sum a = (4.201223961712445e-17,3.7719018050411005e-17,1.2932371661338834e-17)
sum e = 1.1963624300203815
sum de = 1.623592753297043e-17
Info: CFL hydro = 0.002671770368655803 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002671770368655803 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4601e+04 | 13440 | 1 | 2.080e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.12485219674624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.870774735152525, dt = 0.002671770368655803 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1483.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 350.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 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.8607886904761908
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.731882030335895e-19)
sum a = (-1.6252910216843767e-17,-1.0963047929286125e-17,-2.1092367563250667e-17)
sum e = 1.1963624082970945
sum de = 1.9651164376299768e-17
Info: CFL hydro = 0.002696626968583602 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002696626968583602 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.3776e+04 | 13440 | 1 | 2.107e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.641624981124636 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8734465055211809, dt = 0.002696626968583602 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (1.8%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 348.20 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 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.8606398809523808
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.858128760502293e-19,-6.780031826896796e-19)
sum a = (-8.030624269879172e-18,-2.0009479087718033e-17,-1.1026535859820671e-17)
sum e = 1.1963624412000133
sum de = 1.6534083130403943e-18
Info: CFL hydro = 0.0026991586947251595 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026991586947251595 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5888e+04 | 13440 | 1 | 2.040e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.59154199420491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8761431324897645, dt = 0.0026991586947251595 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 327.16 us (93.9%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
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.8645089285714285
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229112,-1.4374625781406634e-20,-6.893830947666265e-19)
sum a = (-7.340642232371654e-18,-2.7599281500300737e-18,5.74709517595455e-17)
sum e = 1.1963624668923585
sum de = 8.673617379884035e-18
Info: CFL hydro = 0.0026842975940964153 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026842975940964153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4274e+04 | 13440 | 1 | 2.091e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.469290475254475 (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 : 7.20 us (1.9%)
patch tree reduce : 1293.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 349.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 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.8727678571428572
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.6914143002788472e-18,-5.156896999079629e-19)
sum a = (6.079508397149579e-17,-7.666467083416871e-20,-3.3936095698937493e-18)
sum e = 1.1963617243220461
sum de = 2.087089182034596e-18
Info: CFL hydro = 0.002681998404248389 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002681998404248389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7116e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.812643702319352 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 2000.042599047 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1840.92 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8800000000000004, dt = 0.002681998404248389 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.6%)
patch tree reduce : 1523.00 ns (0.2%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 609.60 us (95.9%)
LB move op cnt : 0
LB apply : 4.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 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.8790178571428569
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,7.858128760502293e-19,-5.537225639546013e-19)
sum a = (-5.8265149833968216e-18,4.737876657551626e-17,-1.2474779407297389e-17)
sum e = 1.1963624777858364
sum de = -2.859583229930518e-17
Info: CFL hydro = 0.002673156069484904 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002673156069484904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5227e+04 | 13440 | 1 | 2.061e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.858363563540486 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8826819984042489, dt = 0.002673156069484904 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1323.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1091.00 ns (0.3%)
LB compute : 411.53 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (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.8791666666666664
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4326710362135277e-18,-6.115205384506738e-19)
sum a = (-1.4547121290783512e-17,5.85718085173049e-17,3.4640452362226416e-17)
sum e = 1.196362524472586
sum de = -4.296151108473811e-18
Info: CFL hydro = 0.0027063739520595135 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027063739520595135 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6330e+04 | 13440 | 1 | 2.026e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.494210963798594 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8853551544737338, dt = 0.0027063739520595135 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 363.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.879613095238095
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.672690888115335e-19,-4.719668798228511e-19)
sum a = (3.25824851045217e-18,-5.466191030476229e-17,1.0289836288523582e-17)
sum e = 1.19636259414675
sum de = 9.703609443745265e-18
Info: CFL hydro = 0.0026881782277332266 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026881782277332266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6220e+04 | 13440 | 1 | 2.030e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.00409602107036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8880615284257933, dt = 0.0026881782277332266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.78 us (1.8%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1412.00 ns (0.4%)
LB compute : 347.35 us (94.0%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8777529761904759
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.145178520585395e-18,-4.776568358613246e-19)
sum a = (6.495414236424944e-17,-2.974589228365746e-17,9.190177416245975e-17)
sum e = 1.1963626303009778
sum de = 3.869246503057644e-18
Info: CFL hydro = 0.0027047789226965187 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027047789226965187 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5965e+04 | 13440 | 1 | 2.037e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.497716229962336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8907497066535266, dt = 0.0027047789226965187 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1804.00 ns (0.5%)
gen split merge : 1071.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 345.62 us (94.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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.8659970238095238
Warning: the unit system is not set [sph::Config][rank=0]
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,-1.1424832782513814e-19)
sum a = (7.934793431336462e-18,3.334913181286339e-17,1.410629943348704e-17)
sum e = 1.1963626893952544
sum de = 1.8722816266109055e-17
Info: CFL hydro = 0.0026954550150664184 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026954550150664184 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5959e+04 | 13440 | 1 | 2.038e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.786742685178034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8934544855762231, dt = 0.0026954550150664184 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.7%)
patch tree reduce : 1482.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 350.34 us (94.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 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.8658482142857142
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,9.535168434999733e-19,-1.8761881358440117e-19)
sum a = (4.8432905799486085e-17,-1.5332934166833741e-18,-2.197880281977074e-17)
sum e = 1.1963627245958572
sum de = 2.5383883363316873e-17
Info: CFL hydro = 0.0026863483021002765 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026863483021002765 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6491e+04 | 13440 | 1 | 2.021e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.00629316637582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8961499405912895, dt = 0.0026863483021002765 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1323.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 338.97 us (94.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.866220238095238
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.566834210173323e-18,-2.888401367951395e-19)
sum a = (3.978896416293356e-17,6.899820375075184e-19,4.065623325174509e-18)
sum e = 1.1963627514837252
sum de = 2.881267273380228e-17
Info: CFL hydro = 0.002679271452959413 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002679271452959413 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6415e+04 | 13440 | 1 | 2.024e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.78946108981203 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8988362888933897, dt = 0.001163711106610732 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 355.79 us (94.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.25 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.8662946428571425
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.566834210173323e-18,-2.6128877071411015e-19)
sum a = (-5.711517977145569e-18,-4.155225159211944e-17,-3.212968439240739e-17)
sum e = 1.196361894082248
sum de = 8.809142651444724e-18
Info: CFL hydro = 0.0026774289680882575 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026774289680882575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6785e+04 | 13440 | 1 | 2.012e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.817384691753798 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 396 [SPH][rank=0]
Info: time since start : 2008.5755056050002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1932.30 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1839.90 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9000000000000005, dt = 0.0026774289680882575 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1333.00 ns (0.2%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 597.26 us (95.6%)
LB move op cnt : 0
LB apply : 5.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (76.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.875372023809524
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1068461851683107e-18,-3.57419080627267e-19)
sum a = (6.938152710492268e-18,2.2922736579416443e-17,-6.330345617035125e-17)
sum e = 1.1963627567370607
sum de = -4.607859233063394e-19
Info: CFL hydro = 0.0026724917961993794 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026724917961993794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4444e+04 | 13440 | 1 | 2.086e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.217553580472476 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9026774289680887, dt = 0.0026724917961993794 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.60 us (1.7%)
patch tree reduce : 1362.00 ns (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.3%)
LB compute : 357.04 us (92.6%)
LB move op cnt : 0
LB apply : 5.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764136904761906
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.2362178172009705e-18,-5.459363083230061e-19)
sum a = (5.558188635477232e-17,-1.548626350850208e-17,-1.922845775359494e-17)
sum e = 1.1963627775958625
sum de = 1.1899118843028411e-17
Info: CFL hydro = 0.002690012424196243 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002690012424196243 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6326e+04 | 13440 | 1 | 2.026e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.47939229052501 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.905349920764288, dt = 0.002690012424196243 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.8%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 352.47 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.876190476190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.133173666733497e-19,-5.540220353250473e-19)
sum a = (5.017702706096342e-17,8.433113791758558e-19,-2.2136923703366215e-18)
sum e = 1.196362801051843
sum de = 4.065758146820642e-18
Info: CFL hydro = 0.002661362262510714 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002661362262510714 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6433e+04 | 13440 | 1 | 2.023e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.86734621329951 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9080399331884842, dt = 0.002661362262510714 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1573.00 ns (0.4%)
LB compute : 347.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.8752232142857141
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.288664402075857e-19)
sum a = (9.77474553135651e-18,-7.666467083416871e-19,4.179662023040335e-17)
sum e = 1.196362786636031
sum de = 3.531788576871531e-17
Info: CFL hydro = 0.0026376198841104865 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026376198841104865 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6816e+04 | 13440 | 1 | 2.011e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.63096276933896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9107012954509949, dt = 0.0026376198841104865 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.9%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 327.71 us (93.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.867708333333333
Warning: the unit system is not set [sph::Config][rank=0]
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.584672304238279e-19)
sum a = (-3.1164188694089583e-17,1.602291620434126e-17,2.3040728299372155e-17)
sum e = 1.1963627761310685
sum de = -5.421010862427522e-18
Info: CFL hydro = 0.0026185861005048917 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026185861005048917 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6960e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.307385426833626 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9133389153351054, dt = 0.0026185861005048917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.4%)
LB compute : 328.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 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.8680803571428566
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.922840575552682e-19,-3.1803859541362175e-19)
sum a = (4.289388333171739e-17,-1.1653029966793643e-17,4.442178626373274e-17)
sum e = 1.1963627710866263
sum de = -7.589415207398531e-19
Info: CFL hydro = 0.002688135406859336 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002688135406859336 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7111e+04 | 13440 | 1 | 2.003e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.071925084595875 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9159575014356103, dt = 0.002688135406859336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.8%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 351.29 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8683035714285712
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0062238046984643e-19,-1.671050247088521e-19)
sum a = (2.2232754541908927e-18,-4.408218572964701e-18,3.289034167334016e-17)
sum e = 1.1963628367241945
sum de = -2.4557179206796675e-17
Info: CFL hydro = 0.0026834724350656724 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026834724350656724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6376e+04 | 13440 | 1 | 2.025e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.7934239273581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9186456368424696, dt = 0.0013543631575309023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.9%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 328.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.8683035714285712
Warning: the unit system is not set [sph::Config][rank=0]
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.4374625781406633e-19)
sum a = (-1.391463775640162e-17,2.1236113821064733e-17,4.910012801283971e-17)
sum e = 1.196362059021505
sum de = -7.37257477290143e-18
Info: CFL hydro = 0.0026734000504262875 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026734000504262875 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6749e+04 | 13440 | 1 | 2.014e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.214904377079083 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 2017.0996351380002 (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 1978.52 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1891.39 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9200000000000005, dt = 0.0026734000504262875 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.00 us (1.6%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 647.21 us (95.9%)
LB move op cnt : 0
LB apply : 4.82 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (79.3%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.378974567788739e-19,-1.0930705021277961e-20)
sum a = (1.410629943348704e-17,2.175360034919537e-17,-4.0081248220488827e-17)
sum e = 1.1963628289403836
sum de = -6.342582709040201e-18
Info: CFL hydro = 0.0026820437151950692 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026820437151950692 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4256e+04 | 13440 | 1 | 2.092e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.01317757713827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9226734000504268, dt = 0.0026820437151950692 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 330.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.8805059523809522
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.8811489609797907e-19,-2.2026119296301206e-19)
sum a = (-5.746017079020945e-17,-1.2917997035557428e-17,-2.9700372635349674e-17)
sum e = 1.1963628575430487
sum de = -7.589415207398531e-18
Info: CFL hydro = 0.0026714684851299403 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026714684851299403 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6979e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.11822553141996 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9253554437656218, dt = 0.0026714684851299403 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 324.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8798363095238089
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1020546432411752e-18,-2.954285069449509e-19)
sum a = (3.11258563586725e-17,4.082393721919484e-18,-1.6296034094187985e-17)
sum e = 1.1963628628109477
sum de = 5.4752209710517974e-18
Info: CFL hydro = 0.0026643591326739016 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026643591326739016 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6035e+04 | 13440 | 1 | 2.035e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.252997823826654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9280269122507517, dt = 0.0026643591326739016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 346.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.87641369047619
Warning: the unit system is not set [sph::Config][rank=0]
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,-3.111507538933644e-19)
sum a = (-2.437936532526565e-17,1.2189682662632825e-17,1.760412504029599e-17)
sum e = 1.1963628727276086
sum de = -8.185726402265558e-18
Info: CFL hydro = 0.0026527935255396496 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026527935255396496 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6678e+04 | 13440 | 1 | 2.016e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.58624879488776 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9306912713834257, dt = 0.0026527935255396496 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 338.90 us (94.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.863392857142857
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.324835343818918e-19,-2.1517017966543053e-19)
sum a = (-8.433113791758558e-19,-4.389052405256158e-18,1.5821671443401566e-17)
sum e = 1.1963628846262482
sum de = 3.957337929572091e-18
Info: CFL hydro = 0.002646290398202997 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002646290398202997 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6770e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.44473321002581 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9333440649089653, dt = 0.002646290398202997 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1232.00 ns (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 346.48 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8625744047619046
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,8.864352565200757e-19,-1.8687013515828623e-19)
sum a = (2.2501080889828518e-17,-2.577849556798923e-17,-1.0671243025923571e-16)
sum e = 1.1963629095508994
sum de = -8.131516293641283e-19
Info: CFL hydro = 0.0026445962409340222 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026445962409340222 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6853e+04 | 13440 | 1 | 2.010e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.38691590215901 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9359903553071682, dt = 0.0026445962409340222 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1574.00 ns (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 352.10 us (94.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862425595238095
Warning: the unit system is not set [sph::Config][rank=0]
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,-6.264941069729724e-19)
sum a = (2.5912658741949025e-17,-3.564907193788845e-18,2.971235149016751e-17)
sum e = 1.19636295066177
sum de = 7.589415207398531e-18
Info: CFL hydro = 0.002647358734901035 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002647358734901035 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6640e+04 | 13440 | 1 | 2.017e-01 | 0.0% | 0.4% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.20589550419741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9386349515481023, dt = 0.0013650484518982209 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1312.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 350.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862202380952381
Warning: the unit system is not set [sph::Config][rank=0]
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,-4.1087472025187294e-19)
sum a = (-3.5495742596220113e-17,2.4091872809637516e-17,8.297034001027909e-17)
sum e = 1.1963622045699864
sum de = 6.7220534694101275e-18
Info: CFL hydro = 0.002704078617309844 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002704078617309844 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7455e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.664107269146264 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 412 [SPH][rank=0]
Info: time since start : 2026.0070931450002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1947.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1942.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1855.70 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9400000000000005, dt = 0.002704078617309844 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.37 us (1.9%)
patch tree reduce : 1372.00 ns (0.2%)
gen split merge : 532.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.2%)
LB compute : 579.70 us (95.4%)
LB move op cnt : 0
LB apply : 4.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (75.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865029761904762
Warning: the unit system is not set [sph::Config][rank=0]
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,-1.2128590503061847e-19)
sum a = (2.4436863828391275e-17,4.4427176748400765e-17,1.7769433236782167e-17)
sum e = 1.1963630590058265
sum de = -1.680513367352532e-17
Info: CFL hydro = 0.0026938680248935107 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026938680248935107 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.4541e+04 | 13440 | 1 | 2.082e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.74752910646086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9427040786173103, dt = 0.0026938680248935107 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.87 us (1.9%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 335.02 us (94.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
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.8765625
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.953959599045004e-19,-1.7848493678579904e-19)
sum a = (4.4532590670797747e-17,-7.768047772272144e-17,-5.355745989055755e-18)
sum e = 1.196363142606634
sum de = 1.919037845299343e-17
Info: CFL hydro = 0.002696934139996877 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002696934139996877 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6960e+04 | 13440 | 1 | 2.007e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.316316237554894 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9453979466422038, dt = 0.002696934139996877 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.4%)
patch tree reduce : 1253.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.3%)
LB compute : 397.53 us (95.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.8811011904761903
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.433113791758558e-19,-2.0304158916236868e-19)
sum a = (8.217494405037459e-18,-3.7565688708742666e-17,-7.77361793976244e-17)
sum e = 1.196363224772162
sum de = 1.3227266504323154e-17
Info: CFL hydro = 0.0027237860091621933 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027237860091621933 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7556e+04 | 13440 | 1 | 1.989e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.80174202722938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9480948807822006, dt = 0.0027237860091621933 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.7%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 336.19 us (94.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8779761904761902
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.822660950627866e-19,-5.309627398007075e-19)
sum a = (2.1456524749712968e-17,1.7000390757476912e-17,2.972193457402178e-17)
sum e = 1.1963633276441825
sum de = 2.5370330836160804e-17
Info: CFL hydro = 0.0027023577248525186 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027023577248525186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7505e+04 | 13440 | 1 | 1.991e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.25073513860266 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9508186667913628, dt = 0.0027023577248525186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 335.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (67.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8695684523809522
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,5.414442377663165e-19,-3.1893700952495967e-19)
sum a = (1.3952970091818706e-17,5.264946269536536e-17,-3.7354860863948704e-17)
sum e = 1.1963633767534319
sum de = -2.2768245622195593e-17
Info: CFL hydro = 0.0026839824458101077 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026839824458101077 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7486e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.84945522266616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9535210245162153, dt = 0.0026839824458101077 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 351.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8676339285714283
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.2170516494924282e-18,-4.911330475313933e-19)
sum a = (3.493992373267239e-17,1.8802010522079876e-17,9.34350675791431e-18)
sum e = 1.1963634134660481
sum de = -1.3227266504323154e-17
Info: CFL hydro = 0.00272634112809119 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00272634112809119 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.6763e+04 | 13440 | 1 | 2.013e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.99786510293391 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9562050069620255, dt = 0.00272634112809119 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1554.00 ns (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 337.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.866443452380952
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.145178520585395e-18,-4.0293872893505466e-19)
sum a = (1.6176245546009598e-17,2.595099107736611e-17,1.886430056713264e-17)
sum e = 1.1963634993538375
sum de = 1.8431436932253575e-18
Info: CFL hydro = 0.002698846498978273 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002698846498978273 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7402e+04 | 13440 | 1 | 1.994e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.22198617051241 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9589313480901167, dt = 0.001068651909883811 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1252.00 ns (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 336.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865252976190476
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.510273216205876e-19,-3.966498301556893e-19)
sum a = (-3.6454050981647224e-17,-4.9046223166159433e-17,-7.761339613574154e-17)
sum e = 1.1963623123558285
sum de = -5.4969050145015075e-17
Info: CFL hydro = 0.0026888614622544017 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026888614622544017 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7510e+04 | 13440 | 1 | 1.991e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.324522053956827 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 2034.57099732 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1996.85 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.03 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1909.78 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9600000000000005, dt = 0.0026888614622544017 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.46 us (2.0%)
patch tree reduce : 1382.00 ns (0.2%)
gen split merge : 500.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 536.96 us (95.2%)
LB move op cnt : 0
LB apply : 5.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.79 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.8627232142857142
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.749850312562653e-19,-6.377242833646963e-19)
sum a = (-4.427384740673243e-18,3.520825008059198e-17,-1.4470456619949343e-17)
sum e = 1.196363479746648
sum de = -7.37257477290143e-18
Info: CFL hydro = 0.0026639390249552732 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026639390249552732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.5812e+04 | 13440 | 1 | 2.042e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.39996036733251 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.962688861462255, dt = 0.0026639390249552732 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 355.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.6%)
Warning: High interface/patch volume ratio. [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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,7.091482052160606e-19,-5.844183794253135e-19)
sum a = (-5.772849713812903e-17,-5.632936689540546e-17,1.7441212614773382e-17)
sum e = 1.1963634891763484
sum de = -3.577867169202165e-18
Info: CFL hydro = 0.002641387816701775 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002641387816701775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7489e+04 | 13440 | 1 | 1.991e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.15709741555556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9653528004872103, dt = 0.002641387816701775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1513.00 ns (0.4%)
LB compute : 352.39 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8746279761904763
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,6.468581601632985e-19,-5.034113737196782e-19)
sum a = (-1.0234733556361523e-17,1.7939532975195477e-17,-2.8998411743024315e-17)
sum e = 1.196363483825831
sum de = -7.589415207398531e-18
Info: CFL hydro = 0.002620897912251549 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002620897912251549 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7371e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.66576861825673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.967994188303912, dt = 0.002620897912251549 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 346.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 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.8743303571428571
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.863415056042578e-19,-6.293390849922092e-19)
sum a = (7.398140735497281e-18,-1.3627145240773488e-17,-2.1351110827315987e-17)
sum e = 1.1963634777965197
sum de = -1.5504091066542713e-17
Info: CFL hydro = 0.00260252104641037 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.00260252104641037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7463e+04 | 13440 | 1 | 1.992e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.36114439427443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9706150862161635, dt = 0.00260252104641037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 340.67 us (94.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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.8633184523809527
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.348793053454596e-19,-6.72612698021652e-19)
sum a = (3.863899410042103e-17,-3.018671414095393e-17,5.161928118103122e-17)
sum e = 1.1963634701929435
sum de = 1.3118846287074604e-17
Info: CFL hydro = 0.002586307716599019 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002586307716599019 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7383e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.97327437873587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9732176072625739, dt = 0.002586307716599019 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1572.00 ns (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 330.57 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8650297619047616
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0014322627713287e-18,-4.435170996304839e-19)
sum a = (7.187312890703317e-18,-3.141334887430063e-17,-8.984141113379146e-18)
sum e = 1.1963634598140453
sum de = 7.37257477290143e-18
Info: CFL hydro = 0.0026645612895075783 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026645612895075783 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7537e+04 | 13440 | 1 | 1.990e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.787264444377904 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.975803914979173, dt = 0.0026645612895075783 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
patch tree reduce : 1243.00 ns (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 359.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8678571428571429
Warning: the unit system is not set [sph::Config][rank=0]
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,-5.603109341044127e-19)
sum a = (-1.4508788955366427e-17,1.3358818892853898e-17,4.959964625874359e-17)
sum e = 1.1963635381282587
sum de = 1.1058862159352145e-17
Info: CFL hydro = 0.002651834244125465 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002651834244125465 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7424e+04 | 13440 | 1 | 1.993e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.12231563351718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9784684762686805, dt = 0.0015315237313200392 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1463.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 330.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 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.867857142857143
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.552902339936947e-19,-4.005429579714869e-19)
sum a = (5.3281946229747256e-18,6.7848233688239304e-18,-1.2987474393500893e-17)
sum e = 1.1963626316891576
sum de = 3.903127820947816e-18
Info: CFL hydro = 0.0026474668242804757 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0026474668242804757 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7300e+04 | 13440 | 1 | 1.997e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.608604569217558 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 2043.3332128420002 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1940.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1964.97 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.69 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9800000000000005, dt = 0.0026474668242804757 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.40 us (1.8%)
patch tree reduce : 1182.00 ns (0.2%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 536.84 us (95.5%)
LB move op cnt : 0
LB apply : 4.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 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.8683035714285714
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,6.396708472725952e-19,-4.909833118461703e-19)
sum a = (-2.6832634791959047e-18,-6.658326661947552e-17,-1.9190125418177855e-17)
sum e = 1.1963634951585025
sum de = 7.589415207398531e-18
Info: CFL hydro = 0.002639500055451074 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002639500055451074 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7670e+04 | 13440 | 1 | 1.986e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.98737257922718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9826474668242811, dt = 0.002639500055451074 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 332.62 us (94.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.86875
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.426889987060094e-20,-5.722897889222516e-19)
sum a = (-1.6617067403306068e-17,-2.2961068914833527e-17,1.7014765383258318e-17)
sum e = 1.1963634732559174
sum de = -3.968179951296946e-17
Info: CFL hydro = 0.002636727297186456 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002636727297186456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7360e+04 | 13440 | 1 | 1.995e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.623937594328964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9852869668797322, dt = 0.002636727297186456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.8%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 346.19 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8787946428571427
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.3655894492336302e-19,-4.402229145555781e-19)
sum a = (-5.0004531551586544e-17,3.5189083912883436e-17,-3.476742822329551e-17)
sum e = 1.1963634471097342
sum de = -2.168404344971009e-18
Info: CFL hydro = 0.0027230076286749966 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027230076286749966 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7757e+04 | 13440 | 1 | 1.984e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.85476860327101 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9879236941769186, dt = 0.0027230076286749966 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 (1.7%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 337.69 us (94.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
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.8786458333333336
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.0905445430024263e-19,-6.461094817371836e-19)
sum a = (1.3837973085567452e-17,-4.3890524052561586e-17,-1.8629515012702998e-17)
sum e = 1.1963635026931307
sum de = -2.3635607360183997e-17
Info: CFL hydro = 0.0027125048451089274 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027125048451089274 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.8215e+04 | 13440 | 1 | 1.970e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.754804753898135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9906467018055936, dt = 0.0027125048451089274 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1423.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1502.00 ns (0.4%)
LB compute : 360.57 us (84.3%)
LB move op cnt : 0
LB apply : 50.21 us (11.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8674107142857141
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.217494405037459e-19,-6.613825216299281e-19)
sum a = (1.3147991048059934e-17,2.5644332394029432e-17,4.2750137073903325e-17)
sum e = 1.196363467682703
sum de = -4.87890977618477e-18
Info: CFL hydro = 0.0027435418678441797 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027435418678441797 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7723e+04 | 13440 | 1 | 1.985e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.205237528107716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9933592066507024, dt = 0.0027435418678441797 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1353.00 ns (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 341.00 us (94.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229105,6.588370149811373e-19,-4.583409324675594e-19)
sum a = (3.070420066908457e-17,-2.8864248569064516e-17,-8.049790437587714e-18)
sum e = 1.1963634733433652
sum de = 2.1358782797964437e-17
Info: CFL hydro = 0.002736105258684531 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002736105258684531 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7122e+04 | 13440 | 1 | 2.002e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.32645354643302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9961027485185466, dt = 0.002736105258684531 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1383.00 ns (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 337.06 us (94.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8620535714285715
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.186375381545137e-19,-5.486315506570198e-19)
sum a = (4.199307344941591e-17,5.3588604913083926e-17,-2.2520247057537058e-18)
sum e = 1.1963634491640411
sum de = -3.469446951953614e-18
Info: CFL hydro = 0.002732950173649477 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.002732950173649477 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7330e+04 | 13440 | 1 | 1.996e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.34486106195403 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9988388537772311, dt = 0.0011611462227693048 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 341.20 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8619047619047622
Warning: the unit system is not set [sph::Config][rank=0]
Warning: the unit system is not set [sph::Config][rank=0]
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.528944630301269e-19,-5.402463522845326e-19)
sum a = (1.611874704288397e-17,-5.481523964643063e-18,2.5596416974758078e-17)
sum e = 1.196362468603958
sum de = 3.9898639947466563e-17
Info: CFL hydro = 0.0027336530435572376 sink sink = inf [SPH][rank=0]
Info: cfl dt = 0.0027336530435572376 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: Timestep perf report: [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 6.7617e+04 | 13440 | 1 | 1.988e-01 | 0.0% | 0.3% 0.0% | 1.16 GB | 5.04 MB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.030384646125615 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 436 [SPH][rank=0]
Info: time since start : 2051.979205784 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.03 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400 [sph::CartesianRender][rank=0]
Info: compute_slice took 1923.80 ms [sph::CartesianRender][rank=0]
Convert PNG sequence to Image sequence in mpl#
280 import matplotlib.animation as animation
281
282
283 def show_image_sequence(glob_str):
284
285 if render_gif and shamrock.sys.world_rank() == 0:
286
287 import glob
288
289 files = sorted(glob.glob(glob_str))
290
291 from PIL import Image
292
293 image_array = []
294 for my_file in files:
295 image = Image.open(my_file)
296 image_array.append(image)
297
298 if not image_array:
299 raise RuntimeError(f"Warning: No images found for glob pattern: {glob_str}")
300
301 pixel_x, pixel_y = image_array[0].size
302
303 # Create the figure and axes objects
304 # Remove axes, ticks, and frame & set aspect ratio
305 dpi = 200
306 fig = plt.figure(dpi=dpi)
307 plt.gca().set_position((0, 0, 1, 1))
308 plt.gcf().set_size_inches(pixel_x / dpi, pixel_y / dpi)
309 plt.axis("off")
310
311 # Set the initial image with correct aspect ratio
312 im = plt.imshow(image_array[0], animated=True, aspect="auto")
313
314 def update(i):
315 im.set_array(image_array[i])
316 return (im,)
317
318 # Create the animation object
319 ani = animation.FuncAnimation(
320 fig,
321 update,
322 frames=len(image_array),
323 interval=50,
324 blit=True,
325 repeat_delay=10,
326 )
327
328 return ani
329
330
331 # If the animation is not returned only a static image will be shown in the doc
Rho plot
335 glob_str = os.path.join(dump_folder, f"{sim_name}_rho_*.png")
336 ani = show_image_sequence(glob_str)
337
338 if render_gif and shamrock.sys.world_rank() == 0:
339 # Show the animation
340 plt.show()
Vy plot
344 glob_str = os.path.join(dump_folder, f"{sim_name}_vy_*.png")
345 ani = show_image_sequence(glob_str)
346
347 if render_gif and shamrock.sys.world_rank() == 0:
348 # Show the animation
349 plt.show()
alpha plot
353 glob_str = os.path.join(dump_folder, f"{sim_name}_alpha_*.png")
354 ani = show_image_sequence(glob_str)
355
356 if render_gif and shamrock.sys.world_rank() == 0:
357 # Show the animation
358 plt.show()
Total running time of the script: (8 minutes 3.643 seconds)
Estimated memory usage: 336 MB