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 -----
units :
not set
part mass 0 ( can be changed using .set_part_mass() )
cfl force 0
cfl courant 0
--- artificial viscosity config
Config Type : VaryingCD10 (Cullen & Dehnen 2010)
alpha_min = 0
alpha_max = 1
sigma_decay = 0.1
alpha_u = 1
beta_AV = 2
--- artificial viscosity config (deduced)
-------------
EOS config f64_3 :
adiabatic :
gamma 1.4
--- Bondaries config
Config Type : Periodic boundaries
--- Bondaries config config (deduced)
-------------
------------------------------------
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 : 29.16 us (57.9%)
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 : 4.85 us (0.8%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 582.83 us (97.6%)
LB move op cnt : 0
LB apply : 2.62 us (0.4%)
Info: current particle counts : min = 1536 max = 1536 [Model][rank=0]
Info: Add fcc lattice size : ( 32 8 6 ) [SPH][rank=0]
Info: Push particles : [Model][rank=0]
rank = 0 patch id=0, add N=1536 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (61.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.98 us (0.6%)
patch tree reduce : 341.00 ns (0.1%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 431.00 ns (0.1%)
LB compute : 463.91 us (97.8%)
LB move op cnt : 0
LB apply : 2.18 us (0.5%)
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.52 us (63.5%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.29 us (0.6%)
patch tree reduce : 390.00 ns (0.1%)
gen split merge : 552.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 692.00 ns (0.2%)
LB compute : 400.70 us (97.7%)
LB move op cnt : 0
LB apply : 2.13 us (0.5%)
Info: current particle counts : min = 13440 max = 13440 [Model][rank=0]
Total mass : 0.2900242657210449
Current part mass : 2.1579186437577746e-05
---------------- t = 0, dt = 0 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.32 us (1.8%)
patch tree reduce : 3.04 us (0.3%)
gen split merge : 592.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 1082.96 us (93.9%)
LB move op cnt : 0
LB apply : 4.76 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 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.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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 0, max = 4.530888524136066e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.0962995931218005e-21,0)
sum a = (3.572573660872262e-17,6.317168876735502e-17,2.362709324270537e-16)
sum e = 1.1963511454089295
sum de = 1.2836953722228372e-16
Info: cfl dt = 1.6959368633748006e-05 cfl multiplier : 0.01 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 2.0933e+04 | 13440 | 6.421e-01 | 0 % | 1 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0 (tsim/hr) [sph::Model][rank=0]
<shamrock.model_sph.TimestepLog object at 0x7f7a45448870>
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, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1777.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1749.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1740.64 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 : 9.59 us (1.5%)
patch tree reduce : 1262.00 ns (0.2%)
gen split merge : 642.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 595.02 us (92.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 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.8520833333333333
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 0, max = 9.974010058032965e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.283612483825118e-21,4.0567549952551696e-21)
sum a = (-2.334439226900437e-17,-6.807822770074182e-17,-1.0253899724070065e-17)
sum e = 1.1963511508247078
sum de = 5.585809592645319e-16
Info: cfl dt = 0.0005766286633394807 cfl multiplier : 0.34 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6521e+04 | 13440 | 2.020e-01 | 0 % | 1 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.3021842124435526 (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.12 us (1.6%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 366.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8520833333333335
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 8.473992633286546e-14, max = 9.925263098431479e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.4920705566895727e-20,-2.7701101766252366e-21)
sum a = (-1.4144631768904126e-17,4.7838754600521276e-17,-2.9707559948240374e-18)
sum e = 1.1963573975888833
sum de = 6.245004513516506e-17
Info: cfl dt = 0.0009504173631537268 cfl multiplier : 0.56 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.0241e+04 | 13440 | 2.231e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.304466776008516 (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 : 5.84 us (1.7%)
patch tree reduce : 1002.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 322.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8520833333333337
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.036185079508814e-12, max = 9.974019208449242e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.9166167708542177e-20,-5.2968998647631216e-21)
sum a = (1.7096221596019623e-17,-3.679904200040098e-18,-5.097242302086792e-17)
sum e = 1.1963671337333188
sum de = -6.071532165918825e-16
Info: cfl dt = 0.0011834233920238945 cfl multiplier : 0.7066666666666667 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8353e+04 | 13440 | 1.966e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.40100139347471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0015440053951269554, dt = 0.0011834233920238945 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1133.00 ns (0.3%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 344.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8520833333333333
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.7663556373184848e-12, max = 9.99337437428815e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.187312890703316e-20,-7.962195061732268e-20)
sum a = (1.3607979073064945e-18,1.839952100020049e-18,1.575458985642167e-17)
sum e = 1.1963733462943709
sum de = 5.898059818321144e-17
Info: cfl dt = 0.0013321235052401246 cfl multiplier : 0.8044444444444444 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8805e+04 | 13440 | 1.953e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.81030129588443 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00272742878715085, dt = 0.0013321235052401246 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1282.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 364.54 us (95.2%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.8811011904761907
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0090825821468357e-12, max = 9.993380278471262e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-4.791541927135544e-20,-3.31290203555856e-20)
sum a = (4.0114789013978775e-17,-6.1331736667334966e-18,6.669826362572678e-18)
sum e = 1.1963750600813954
sum de = 1.700029006457271e-16
Info: cfl dt = 0.0014517457261939517 cfl multiplier : 0.8696296296296296 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8217e+04 | 13440 | 1.970e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.341063275747487 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.004059552292390975, dt = 0.0014517457261939517 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 342.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0091019856213488e-12, max = 9.999894974853464e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.449910187537592e-19,-1.4150022253572153e-20)
sum a = (1.0637223078240909e-17,-4.109226356711443e-17,3.319580247119505e-17)
sum e = 1.1963737856849517
sum de = -6.591949208711867e-17
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.012118974700471283
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.749850312562653e-20,-7.112445048091823e-21)
sum a = (1.8437853335617574e-17,9.813077866773595e-18,-8.145621276130425e-19)
sum e = 1.1963492184928974
sum de = 6.071532165918825e-17
Info: cfl dt = 0.0007674045592355257 cfl multiplier : 0.4565432098765432 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 4.7813e+04 | 13440 | 2.811e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.59274500258954 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0055112980185849265, dt = 0.0007674045592355257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1513.00 ns (0.4%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 370.29 us (95.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0086995585446516e-12, max = 9.903635957454987e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-8.62477546884398e-20,-2.957279783153969e-20)
sum a = (-5.079034442763677e-18,2.3306059933587286e-17,1.0058404813442935e-16)
sum e = 1.1963562107800347
sum de = -2.2551405187698492e-17
Info: cfl dt = 0.0010660932319456464 cfl multiplier : 0.6376954732510288 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8280e+04 | 13440 | 1.968e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 14.035235134300944 (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.31 us (1.6%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 311.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.004270856755533e-12, max = 9.868541673556834e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.9290643802511465e-19,1.0346735848908316e-19)
sum a = (1.1959688650130319e-17,-6.7464910334068465e-18,2.4456029996099817e-17)
sum e = 1.1963596526803164
sum de = 2.8102520310824275e-16
Info: cfl dt = 0.0012616150352869708 cfl multiplier : 0.7584636488340193 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8053e+04 | 13440 | 1.975e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.433243370478493 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.007344795809766098, dt = 0.0012616150352869708 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (1.4%)
patch tree reduce : 1363.00 ns (0.4%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 336.51 us (95.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.881101190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0060851482999653e-12, max = 9.975496657488625e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.31238773442199e-19,9.957423067328553e-20)
sum a = (6.037342828190786e-19,1.0119736550110269e-17,6.617119401374187e-17)
sum e = 1.1963603867261232
sum de = 8.847089727481716e-17
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.01022440907316982
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.8687013515828623e-19,1.4120075116527557e-19)
sum a = (-4.222306746191842e-17,-2.7599281500300737e-18,7.973125766753546e-18)
sum e = 1.19634984361963
sum de = 2.255140518769849e-16
Info: cfl dt = 0.0006909728549565852 cfl multiplier : 0.4194878829446731 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 4.7369e+04 | 13440 | 2.837e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.007505321455437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.00860641084505307, dt = 0.0006909728549565852 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 323.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761907
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0045863074974632e-12, max = 9.989824907957543e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.395770963567772e-20,9.598057422793387e-20)
sum a = (1.586000377881865e-17,3.679904200040098e-18,-4.587901395232284e-17)
sum e = 1.196352977025619
sum de = -1.43982048506075e-16
Info: cfl dt = 0.001002830487465553 cfl multiplier : 0.6129919219631154 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7867e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.560955878846944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.009297383700009654, dt = 0.001002830487465553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.39 us (1.2%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 350.19 us (95.6%)
LB move op cnt : 0
LB apply : 2.85 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0113457805150954e-12, max = 9.994128591320002e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.360303153693346e-19,1.2577797558730804e-20)
sum a = (-1.6080414707466886e-17,1.9932814416883864e-17,-3.9721882575953665e-18)
sum e = 1.1963549136684808
sum de = 4.683753385137379e-17
Info: cfl dt = 0.00120507013915013 cfl multiplier : 0.7419946146420768 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6871e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.962642001344673 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.010300214187475207, dt = 0.00120507013915013 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1053.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 334.28 us (95.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.004347360094133e-12, max = 9.981906149228528e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.449910187537592e-19,3.0620947628100586e-20)
sum a = (6.018176660482243e-18,-5.473857497559646e-17,7.31189298080884e-18)
sum e = 1.1963555237912649
sum de = 6.591949208711867e-17
Info: cfl dt = 0.001334352407441995 cfl multiplier : 0.8279964097613846 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7443e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.769545354405874 (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 : 5.42 us (1.5%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 341.49 us (95.1%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0019347171436454e-12, max = 9.997396045885151e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.1082784479396395e-19,5.2407489828045014e-20)
sum a = (1.832285632936632e-17,-1.533293416683374e-17,-1.8931382154112535e-17)
sum e = 1.1963554092635755
sum de = 5.811323644522304e-17
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.011128264207043869
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.749850312562653e-20,4.8214890641801416e-20)
sum a = (7.723965586542498e-18,9.50641918343692e-18,2.973630919980319e-17)
sum e = 1.1963500620497391
sum de = 9.107298248878237e-17
Info: cfl dt = 0.0007116148707606399 cfl multiplier : 0.4426654699204615 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 4.7427e+04 | 13440 | 2.834e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.951078796886474 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.012839636734067333, dt = 0.0007116148707606399 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.1%)
patch tree reduce : 1192.00 ns (0.2%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.2%)
LB compute : 461.71 us (96.3%)
LB move op cnt : 0
LB apply : 3.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0104029538014366e-12, max = 9.97043604700221e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.0541392239698198e-19,8.430119078054098e-20)
sum a = (1.6962058422059826e-18,-5.213197616723472e-17,-4.603713483591831e-17)
sum e = 1.1963515298236995
sum de = -6.505213034913027e-17
Info: cfl dt = 0.0010138488734798463 cfl multiplier : 0.628443646613641 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6446e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.665353652489642 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.013551251604827973, dt = 0.0010138488734798463 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 363.87 us (95.2%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.909823646389974e-12, max = 9.901000259203236e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.229004505276208e-20,9.133876798602131e-21)
sum a = (1.4757949135577478e-17,-2.6794302456541963e-17,-4.240514605514957e-17)
sum e = 1.1963528909155186
sum de = 9.020562075079397e-17
Info: cfl dt = 0.001214016143908889 cfl multiplier : 0.7522957644090941 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6878e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.16172377766885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.01456510047830782, dt = 0.001214016143908889 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1172.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 338.04 us (94.9%)
LB move op cnt : 0
LB apply : 2.98 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0276197181663516e-12, max = 9.980437749858076e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.018671414095393e-19,-1.1080440706500946e-20)
sum a = (4.8375407296360455e-17,-2.86725868919791e-17,9.563917686562546e-18)
sum e = 1.19635425299669
sum de = -1.0278236595162582e-16
Info: cfl dt = 0.0013514695226909473 cfl multiplier : 0.834863842939396 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6542e+04 | 13440 | 2.020e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.63816322198462 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.015779116622216708, dt = 0.0013514695226909473 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 314.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.8414542303778655e-12, max = 9.992280208364784e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.874925156281327e-20,3.3690529175171795e-20)
sum a = (-7.930960197794753e-17,-2.37660479585923e-18,1.2544376553789034e-16)
sum e = 1.1963558552731728
sum de = -8.370040771588094e-17
Info: cfl dt = 0.001450104955700349 cfl multiplier : 0.889909228626264 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6318e+04 | 13440 | 2.027e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.00706703032634 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.017130586144907655, dt = 0.001450104955700349 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1112.00 ns (0.3%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 325.30 us (94.9%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8640624999999995
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9760445192390767e-12, max = 9.994666597954152e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.666467083416871e-20,2.8120361684876725e-19)
sum a = (3.722069768998891e-17,1.9166167708542177e-17,-4.1330642777989424e-17)
sum e = 1.1963577746442513
sum de = 2.1250362580715887e-17
Info: cfl dt = 0.0015382686268546547 cfl multiplier : 0.9266061524175093 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6735e+04 | 13440 | 2.014e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.921403653249435 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.018580691100608004, dt = 0.001419308899391996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.5%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 314.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8632440476190475
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0078251567655268e-12, max = 9.989362817580264e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9645321901255733e-19,7.950964885340544e-20)
sum a = (-2.9381735097195156e-17,2.37660479585923e-17,2.0782339826996474e-17)
sum e = 1.1963587059762273
sum de = 2.5153490401663703e-17
Info: cfl dt = 0.0016009811815894087 cfl multiplier : 0.9510707682783396 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6813e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.400460660273243 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 20 [SPH][rank=0]
Info: time since start : 360.593694072 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1773.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1767.63 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1744.72 ms [sph::CartesianRender][rank=0]
---------------- t = 0.02, dt = 0.0016009811815894087 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (1.6%)
patch tree reduce : 1072.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 584.86 us (96.1%)
LB move op cnt : 0
LB apply : 4.13 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (78.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8632440476190473
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0001326288678107e-12, max = 9.99517596223651e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.389547158869308e-19,1.5093357070476965e-19)
sum a = (5.2342804012028683e-17,1.901283836687384e-17,-3.9942293504601897e-17)
sum e = 1.1963620169444165
sum de = -6.461844948013606e-17
Info: cfl dt = 0.0016578154489938917 cfl multiplier : 0.9673805121855598 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 5.4015e+04 | 13440 | 2.488e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.16328162484763 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02160098118158941, dt = 0.0016578154489938917 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 318.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.8632440476190475
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.889750281284313e-12, max = 9.968721602188866e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.593656445351658e-19,6.72313226651206e-20)
sum a = (-9.184427565933411e-17,7.083815585077189e-17,8.246243656600272e-18)
sum e = 1.196364137098591
sum de = -6.852157730108388e-17
Info: cfl dt = 0.0017127056318353364 cfl multiplier : 0.9782536747903731 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6690e+04 | 13440 | 2.015e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.614096189827254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0232587966305833, dt = 0.0017127056318353364 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1342.00 ns (0.4%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 353.32 us (95.2%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.000828421519633e-12, max = 9.995945827021854e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0541392239698198e-19,1.1125361412067842e-19)
sum a = (-2.1542772504401407e-17,-2.4072706641928973e-17,1.4705242174378987e-17)
sum e = 1.1963659339355457
sum de = 7.676151381197371e-17
Info: cfl dt = 0.0017677005654260559 cfl multiplier : 0.9855024498602486 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7249e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.851361080722622 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.024971502262418635, dt = 0.0017677005654260559 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1071.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.4%)
LB compute : 321.10 us (94.9%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761907
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.011310674202892e-12, max = 9.957370383964912e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.389547158869308e-19,1.2143564071584146e-19)
sum a = (-4.722543723384793e-17,-4.415885040048118e-17,-5.941511989648075e-18)
sum e = 1.196367391336117
sum de = -1.3140530330524314e-16
Info: cfl dt = 0.0018630452369620472 cfl multiplier : 0.990334966573499 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6258e+04 | 13440 | 2.028e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 31.37257575830037 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.026739202827844692, dt = 0.0018630452369620472 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 332.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0032808458861093e-12, max = 9.99438396939882e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.8332335417084355e-20,1.2225918698456788e-19)
sum a = (-3.354079348994881e-17,-3.373245516703423e-17,-6.16192291829631e-18)
sum e = 1.1963693011654974
sum de = -2.2985086056692694e-17
Info: cfl dt = 0.001918759332473188 cfl multiplier : 0.9935566443823326 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7423e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.645856189185864 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.02860224806480674, dt = 0.001918759332473188 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1042.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 : 349.69 us (95.2%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8714285714285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.075143839744339e-12, max = 9.89991578422991e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.583083854271088e-20,9.530676364443044e-20)
sum a = (5.803515582146571e-17,2.4532694666933987e-18,-3.415890239854929e-17)
sum e = 1.1963702851256783
sum de = 1.734723475976807e-18
Info: cfl dt = 0.0019628452579179296 cfl multiplier : 0.9957044295882218 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7488e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.68544532432165 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.030521007397279927, dt = 0.0019628452579179296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1192.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 : 330.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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.8703869047619046
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.968714420763788e-12, max = 9.997872678925614e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.62477546884398e-20,1.632118968930545e-20)
sum a = (3.407744618578799e-17,-3.342579648369756e-17,-1.7340590234303534e-17)
sum e = 1.1963708050166801
sum de = -5.2909066017292616e-17
Info: cfl dt = 0.0019844289087023056 cfl multiplier : 0.9971362863921479 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7529e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.50435892722492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.032483852655197855, 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.24 us (1.6%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 315.21 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8796875
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9747526798306416e-12, max = 9.98106813399337e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.8332335417084355e-20,-4.492070556689573e-21)
sum a = (-1.583125452725584e-17,5.3665269583918095e-17,-3.0847946926898633e-17)
sum e = 1.1963707211399641
sum de = 3.382710778154774e-17
Info: cfl dt = 0.0019912964735130404 cfl multiplier : 0.9980908575947653 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7775e+04 | 13440 | 1.983e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.025451430974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03446828156390016, dt = 0.0019912964735130404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.2%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 344.03 us (95.3%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8799851190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0007919996591107e-12, max = 9.99960575255948e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.395770963567772e-19,-8.010859159429739e-20)
sum a = (-1.276466769388909e-17,-2.606598808361736e-17,1.8912215986403993e-17)
sum e = 1.1963702593498282
sum de = 7.806255641895632e-17
Info: cfl dt = 0.002007812002181353 cfl multiplier : 0.9987272383965102 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8069e+04 | 13440 | 1.974e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.30667688767369 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0364595780374132, dt = 0.002007812002181353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 352.84 us (95.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8807291666666668
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.005911335733305e-12, max = 9.995069669612668e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,5.749850312562653e-20,5.98942740891943e-22)
sum a = (-2.2577745560662684e-17,6.7464910334068465e-18,-1.7359756402012077e-17)
sum e = 1.1963698244142575
sum de = 5.204170427930421e-17
Info: cfl dt = 0.0020234500620505674 cfl multiplier : 0.9991514922643402 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7438e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.2688483608733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.03846739003959455, dt = 0.0015326099604054538 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 318.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8639136904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.932034800445013e-12, max = 9.990431594132556e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.761360412801402e-19,-6.041834898747476e-20)
sum a = (2.0967787473145143e-17,-3.066586833366748e-17,1.046472756886403e-17)
sum e = 1.196362264490394
sum de = -3.5561831257524545e-17
Info: cfl dt = 0.002039782222656886 cfl multiplier : 0.9994343281762269 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8080e+04 | 13440 | 1.974e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.94817450759064 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 31 [SPH][rank=0]
Info: time since start : 369.283137614 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1818.12 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1798.79 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1747.09 ms [sph::CartesianRender][rank=0]
---------------- t = 0.04, dt = 0.002039782222656886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.81 us (1.5%)
patch tree reduce : 1302.00 ns (0.2%)
gen split merge : 17.27 us (2.7%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 598.96 us (93.6%)
LB move op cnt : 0
LB apply : 4.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 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.8632440476190473
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.884851324226553e-12, max = 9.999959220702141e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.293716320326597e-19,-2.4257181006123692e-20)
sum a = (1.6674565906431695e-17,-5.8265149833968216e-18,4.856467320248231e-17)
sum e = 1.1963686352547116
sum de = 8.673617379884035e-18
Warning: the corrector tolerance are broken the step will be re rerunned [BasicGasSPH][rank=0]
eps_v = 0.010097879950727454
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.749850312562653e-20,2.6503216284468478e-20)
sum a = (-2.62193174252857e-17,2.3612718616923964e-17,4.748418049791325e-18)
sum e = 1.1963529970104605
sum de = 1.474514954580286e-17
Info: cfl dt = 0.001032502470928898 cfl multiplier : 0.499811442725409 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 4.7206e+04 | 13440 | 2.847e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.79205953025899 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.042039782222656884, dt = 0.001032502470928898 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1272.00 ns (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 319.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.863244047619048
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9361590621979474e-12, max = 9.999496389905108e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8687013515828623e-19,-2.163680651472144e-20)
sum a = (9.046431158431908e-18,1.0886383258451956e-17,4.2783677867393274e-17)
sum e = 1.1963569144775916
sum de = 9.020562075079397e-17
Info: cfl dt = 0.0013857563958165823 cfl multiplier : 0.6665409618169393 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8839e+04 | 13440 | 1.952e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.03835679523416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04307228469358578, dt = 0.0013857563958165823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1302.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 362.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8804315476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.956011765457045e-12, max = 9.99722499476571e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.7728705130401514e-19,6.120446133489543e-20)
sum a = (2.729262281696406e-17,-6.899820375075184e-18,-5.293695521099349e-17)
sum e = 1.196359582611764
sum de = -1.3877787807814457e-17
Info: cfl dt = 0.0016259299273677556 cfl multiplier : 0.7776939745446262 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7163e+04 | 13440 | 2.001e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.929982911442846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.044458041089402364, dt = 0.0016259299273677556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.4%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.4%)
LB compute : 315.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8811011904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.977765380458002e-12, max = 9.994130198461379e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.724955093768796e-19,-9.231204993997073e-20)
sum a = (-4.0325616858772744e-17,-3.702903601290349e-17,-1.2747897297144115e-17)
sum e = 1.196361390770486
sum de = 1.3357370765021415e-16
Info: cfl dt = 0.0018004902760843922 cfl multiplier : 0.8517959830297507 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8241e+04 | 13440 | 1.969e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.72017584912865 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04608397101677012, dt = 0.0018004902760843922 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.58 us (1.4%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.4%)
LB compute : 310.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9711706072339916e-12, max = 9.995266585734719e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.229004505276208e-20,-9.231204993997073e-20)
sum a = (4.0478946200441076e-17,1.6789562912682946e-17,-9.504023412473352e-18)
sum e = 1.1963624252885525
sum de = 1.5612511283791264e-17
Info: cfl dt = 0.0019066570317067951 cfl multiplier : 0.9011973220198337 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7846e+04 | 13440 | 1.981e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.72021788428788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.047884461292854515, dt = 0.0019066570317067951 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (1.3%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 310.31 us (95.0%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9934968563688417e-12, max = 9.995662792909424e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-19,-1.02456642613828e-19)
sum a = (6.171506002150581e-18,-2.5912658741949025e-17,-1.3520533432894722e-17)
sum e = 1.1963626417608988
sum de = 9.974659986866641e-18
Info: cfl dt = 0.001964496979870752 cfl multiplier : 0.9341315480132225 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6351e+04 | 13440 | 2.026e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.88637276105034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.04979111832456131, dt = 0.001964496979870752 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 314.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9323690817429676e-12, max = 9.995851745317367e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.62477546884398e-20,-1.4438263447626403e-19)
sum a = (1.7364547943939213e-17,6.4398323500701715e-18,4.224223362962696e-17)
sum e = 1.1963625143847625
sum de = 2.6020852139652106e-18
Info: cfl dt = 0.002003189919250448 cfl multiplier : 0.9560876986754817 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7221e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.37182318073807 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05175561530443206, dt = 0.002003189919250448 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1163.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.84 us (95.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8811011904761907
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.946625396565695e-12, max = 9.99739282076876e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-5.031119023492321e-19,-1.0369196201691764e-20)
sum a = (4.1513919256702356e-17,-1.7019556925185454e-17,3.854915268928724e-17)
sum e = 1.1963626135848286
sum de = 4.336808689942018e-17
Info: cfl dt = 0.0020297314737005574 cfl multiplier : 0.9707251324503211 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7172e+04 | 13440 | 2.001e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.04223269239661 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05375880522368251, dt = 0.0020297314737005574 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (1.1%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 349.65 us (95.7%)
LB move op cnt : 0
LB apply : 2.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9501480721055563e-12, max = 9.99889209339509e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.145621276130426e-20,6.827947246168151e-20)
sum a = (1.9530324895004478e-17,-3.679904200040098e-18,-5.203614532869201e-18)
sum e = 1.1963629705465169
sum de = 7.37257477290143e-17
Info: cfl dt = 0.002091973660940606 cfl multiplier : 0.9804834216335475 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7254e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.56475747071214 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05578853669738307, dt = 0.002091973660940606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (1.3%)
patch tree reduce : 1313.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 315.27 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9872532693400436e-12, max = 9.983185132354645e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.3478555442964167e-19,1.4973568522298576e-20)
sum a = (-2.5337673710692758e-17,-1.8092862316863815e-17,1.2326241607556188e-17)
sum e = 1.1963639952513292
sum de = -1.734723475976807e-18
Info: cfl dt = 0.0021126638689438855 cfl multiplier : 0.9869889477556985 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7219e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.666026243396914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.05788051035832367, dt = 0.0021126638689438855 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1303.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 346.25 us (95.1%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.0%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9417668888801718e-12, max = 9.925984929518224e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.4019947682662363e-19,6.962709362868838e-20)
sum a = (-3.484409289412968e-17,-1.3799640750150368e-18,-4.072810638065213e-18)
sum e = 1.1963648155967699
sum de = -4.163336342344337e-17
Info: cfl dt = 0.0021197262929455213 cfl multiplier : 0.9913259651704657 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6588e+04 | 13440 | 2.018e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.68181690589199 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.059993174227267555, dt = 6.825772732442503e-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 : 4.95 us (1.3%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 358.97 us (95.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.881101190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9467138671505408e-12, max = 9.998498449669335e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.887372765678255e-19,5.3156168254159943e-20)
sum a = (-1.2438842842843873e-17,3.52657485837176e-18,-1.8555246112832396e-17)
sum e = 1.196353831252407
sum de = -4.423544863740858e-17
Info: cfl dt = 0.0021273616976012293 cfl multiplier : 0.9942173101136437 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 7.1231e+04 | 13440 | 1.887e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.1302347962247665 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 43 [SPH][rank=0]
Info: time since start : 378.26659067400004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1798.57 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1800.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1754.53 ms [sph::CartesianRender][rank=0]
---------------- t = 0.06, dt = 0.0021273616976012293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.14 us (1.7%)
patch tree reduce : 1322.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 566.30 us (96.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.855059523809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.921756995109892e-12, max = 9.994974787849023e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.545741026080303e-19,-2.545506648790758e-21)
sum a = (-9.364589542393708e-17,2.9439233600320786e-17,-2.545506648790758e-17)
sum e = 1.196365177516942
sum de = 6.765421556309548e-17
Info: cfl dt = 0.0021381165714732635 cfl multiplier : 0.9961448734090957 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4057e+04 | 13440 | 2.098e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.50125612645509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.062127361697601226, dt = 0.0021381165714732635 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1233.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.4%)
LB compute : 340.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.8549107142857149
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9259304339329225e-12, max = 9.98410606426467e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.708158697989762e-20,-5.04609259201462e-20)
sum a = (1.3799640750150368e-18,-3.449910187537592e-17,3.2551340081995323e-17)
sum e = 1.1963660988344393
sum de = -3.838075690598686e-17
Info: cfl dt = 0.002142340237981152 cfl multiplier : 0.9974299156060639 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6837e+04 | 13440 | 2.011e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.2782866168246 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06426547826907449, dt = 0.002142340237981152 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1472.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 : 311.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8808035714285718
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.000524579066481e-12, max = 9.990131950715755e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-20,7.621546377849975e-20)
sum a = (3.6224056969144716e-17,-1.418296410432121e-17,8.114955407796758e-17)
sum e = 1.1963664137399659
sum de = 2.688821387764051e-17
Info: cfl dt = 0.0021833481476595928 cfl multiplier : 0.9982866104040425 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7263e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.5981709224944 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06640781850705564, dt = 0.0021833481476595928 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.5%)
patch tree reduce : 1303.00 ns (0.4%)
gen split merge : 532.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 311.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 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.8799107142857145
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.912544520296034e-12, max = 9.99412325137863e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.922840575552682e-19,3.0201687709476227e-19)
sum a = (6.899820375075184e-19,-4.5845473158832885e-17,-4.0967683477008905e-19)
sum e = 1.1963669371966215
sum de = -1.1275702593849246e-17
Info: cfl dt = 0.002180794229603429 cfl multiplier : 0.9988577402693618 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6394e+04 | 13440 | 2.024e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.828717702473405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.06859116665471524, dt = 0.002180794229603429 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1193.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 313.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8802083333333335
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9569047109815094e-12, max = 9.998225359682093e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.037342828190786e-19,2.1247493733141679e-19)
sum a = (-6.938152710492268e-18,3.649238331706431e-17,-2.4115830519273194e-17)
sum e = 1.196366516624192
sum de = 2.168404344971009e-18
Info: cfl dt = 0.002170660582494938 cfl multiplier : 0.9992384935129079 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7392e+04 | 13440 | 1.994e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.36619236953153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07077196088431867, dt = 0.002170660582494938 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.3%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 327.59 us (95.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.8805803571428574
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9168978140118895e-12, max = 9.97799210067728e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-19,1.2637691832819998e-19)
sum a = (-1.1039712600120295e-17,-2.587432640653194e-17,-5.706007703929363e-17)
sum e = 1.1963657989461758
sum de = 1.6479873021779667e-17
Info: cfl dt = 0.0021738924585374296 cfl multiplier : 0.9994923290086053 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6877e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.883986536271344 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0729426214668136, dt = 0.0021738924585374296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 336.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8804315476190478
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.983037281387611e-12, max = 9.989769289776251e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.6894872838943693e-19,-3.586169661090509e-20)
sum a = (-4.80304162776067e-17,6.1906721698591235e-18,2.7802922032204e-17)
sum e = 1.1963652086316943
sum de = 4.098284211995207e-17
Info: cfl dt = 0.0021794331189129356 cfl multiplier : 0.9996615526724035 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6975e+04 | 13440 | 2.007e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.99923838357316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07511651392535103, dt = 0.0021794331189129356 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.4%)
patch tree reduce : 1062.00 ns (0.3%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 320.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
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.8804315476190478
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9647291344324505e-12, max = 9.997328186084648e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.389547158869308e-19,1.2637691832819998e-19)
sum a = (-2.5299341375275673e-18,-1.1844691643879065e-17,5.9151585090488295e-18)
sum e = 1.196364705087047
sum de = -1.1926223897340549e-17
Info: cfl dt = 0.0021603612805719792 cfl multiplier : 0.9997743684482691 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6860e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.03138050793456 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07729594704426396, dt = 0.0021603612805719792 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.4%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 313.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805803571428574
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9844749029553914e-12, max = 9.9940157641187e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.7311788984672605e-19,9.860094871933612e-20)
sum a = (-4.856706897344588e-17,-4.3008880337968645e-17,-2.0898310115201676e-17)
sum e = 1.1963641009670487
sum de = 8.023096076392733e-18
Info: cfl dt = 0.002171200024203208 cfl multiplier : 0.9998495789655127 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6421e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.43552595617302 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.07945630832483594, dt = 0.0005436916751640625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1002.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 333.57 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.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.8805803571428574
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0076565987518596e-12, max = 9.996309559153445e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.018671414095393e-19,4.0877842065875115e-20)
sum a = (-6.504997320279215e-17,-1.1959688650130319e-17,7.797156389479493e-17)
sum e = 1.1963552796479424
sum de = -3.0574501264091225e-17
Info: cfl dt = 0.002175975333812563 cfl multiplier : 0.9998997193103417 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9629e+04 | 13440 | 1.930e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.140140378794971 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 53 [SPH][rank=0]
Info: time since start : 386.93208490700005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1818.64 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1806.32 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1748.25 ms [sph::CartesianRender][rank=0]
---------------- t = 0.08, dt = 0.002175975333812563 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.05 us (2.3%)
patch tree reduce : 3.97 us (0.7%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 545.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 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.8652529761904766
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9105756499179953e-12, max = 9.964485321166483e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.4978256068089474e-19,2.492350480536598e-19)
sum a = (1.9434494056461766e-17,2.6755970121124878e-17,2.92523634651625e-17)
sum e = 1.1963637999447618
sum de = 9.974659986866641e-18
Info: cfl dt = 0.002184955513788512 cfl multiplier : 0.9999331462068944 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6019e+04 | 13440 | 2.036e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.47939966015976 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08217597533381256, dt = 0.002184955513788512 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1193.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 333.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8644345238095241
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9244822589467152e-12, max = 9.999836212004672e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.187312890703316e-19,2.705723831979353e-19)
sum a = (1.93578293856276e-18,1.441295811682372e-17,2.2989818166396342e-17)
sum e = 1.1963636943170142
sum de = 2.6020852139652106e-18
Info: cfl dt = 0.0022023072660140417 cfl multiplier : 0.9999554308045964 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6330e+04 | 13440 | 2.026e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.820113828254044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08436093084760107, dt = 0.0022023072660140417 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1563.00 ns (0.5%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 317.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8796130952380958
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.977843563098081e-12, max = 9.99621594225136e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.395770963567772e-20,3.1279784643081723e-19)
sum a = (4.084310338690338e-17,1.5332934166833741e-18,-2.3258144514315932e-17)
sum e = 1.1963636843311107
sum de = 1.2576745200831851e-17
Info: cfl dt = 0.0022230188414489567 cfl multiplier : 0.9999702872030642 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6073e+04 | 13440 | 2.034e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.976767595507354 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08656323811361512, dt = 0.0022230188414489567 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1553.00 ns (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 338.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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.8804315476190478
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.009417932554367e-12, max = 9.995075773854739e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-20,2.198868537499546e-19)
sum a = (-9.966407208441933e-19,4.231889830046113e-17,6.107299340326965e-17)
sum e = 1.1963637411757615
sum de = 3.8163916471489756e-17
Info: cfl dt = 0.002237227422273774 cfl multiplier : 0.9999801914687095 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6359e+04 | 13440 | 2.025e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.51350917112064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.08878625695506408, dt = 0.002237227422273774 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 342.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.881101190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9709179381207896e-12, max = 9.985588117785904e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6353480599245493e-19,4.412710643521391e-19)
sum a = (-1.971240348823563e-17,2.9592562941989125e-17,3.857191251344113e-18)
sum e = 1.1963637127811366
sum de = 3.859759734048396e-17
Info: cfl dt = 0.0022585965572124037 cfl multiplier : 0.9999867943124731 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6182e+04 | 13440 | 2.031e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.660199059786535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09102348437733786, dt = 0.0022585965572124037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 347.54 us (94.9%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.871949404761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0117741727913034e-12, max = 9.975661212269515e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.0541392239698198e-19,3.886015370749538e-19)
sum a = (-1.6137913210592513e-17,-3.5879065950390954e-17,2.73117889846726e-18)
sum e = 1.1963636492528034
sum de = -4.336808689942018e-17
Info: cfl dt = 0.0022810466576836286 cfl multiplier : 0.9999911962083153 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6912e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.48064111495134 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09328208093455026, dt = 0.0022810466576836286 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1212.00 ns (0.3%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 329.88 us (92.8%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.871949404761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9948118315187437e-12, max = 9.986659444107413e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.162417671909459e-19,3.9459096448387324e-19)
sum a = (1.0196401220944438e-17,-3.357912582536589e-17,5.8265149833968216e-18)
sum e = 1.1963634522445175
sum de = 3.382710778154774e-17
Info: cfl dt = 0.0022334184074738195 cfl multiplier : 0.9999941308055437 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6213e+04 | 13440 | 2.030e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.45559114560851 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.09556312759223388, dt = 0.0022334184074738195 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1202.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 : 336.13 us (94.9%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8800595238095246
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9844143799707946e-12, max = 9.963214612030178e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.666467083416871e-20,4.114736629927649e-19)
sum a = (-2.9774641535220275e-17,-4.415885040048118e-17,7.088607127004324e-17)
sum e = 1.1963626180420233
sum de = 1.6479873021779667e-17
Info: cfl dt = 0.0022521637422939543 cfl multiplier : 0.9999960872036958 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6676e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.88798465133965 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.0977965459997077, dt = 0.0022034540002923014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1152.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 : 310.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805803571428577
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9808658495047873e-12, max = 9.984189002567257e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.31238773442199e-19,6.455947653192296e-19)
sum a = (5.941511989648075e-19,2.7752610841969073e-17,-4.19643241978531e-17)
sum e = 1.1963619933516378
sum de = 8.673617379884035e-18
Info: cfl dt = 0.002272035341470666 cfl multiplier : 0.9999973914691305 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6093e+04 | 13440 | 2.033e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.008969157261234 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 62 [SPH][rank=0]
Info: time since start : 395.27806547700004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1815.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1817.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1762.82 ms [sph::CartesianRender][rank=0]
---------------- t = 0.1, dt = 0.002272035341470666 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
patch tree reduce : 1152.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 522.10 us (96.0%)
LB move op cnt : 0
LB apply : 2.97 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (75.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.86421130952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9295199618437186e-12, max = 9.988171529581216e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.5395172213818386e-19,4.1233464318279706e-19)
sum a = (-4.691877855051125e-17,1.5332934166833741e-18,-1.8169526987697985e-17)
sum e = 1.1963621132603008
sum de = -1.1275702593849246e-17
Info: cfl dt = 0.0022627801692415095 cfl multiplier : 0.9999982609794204 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.3143e+04 | 13440 | 2.129e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.42738030265075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10227203534147067, dt = 0.0022627801692415095 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.1%)
patch tree reduce : 1353.00 ns (0.3%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 398.63 us (95.9%)
LB move op cnt : 0
LB apply : 3.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.8%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.949118351134862e-12, max = 9.997360743883067e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.8332335417084355e-20,4.0293872893505466e-19)
sum a = (2.2117757535657674e-17,1.839952100020049e-17,-2.911340874927557e-17)
sum e = 1.1963619874807643
sum de = 2.7321894746634712e-17
Info: cfl dt = 0.0022477613208550322 cfl multiplier : 0.999998840652947 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7088e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.66204391031595 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10453481551071218, dt = 0.0022477613208550322 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (1.2%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 312.18 us (90.4%)
LB move op cnt : 0
LB apply : 19.94 us (5.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8645833333333337
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.030582816063892e-12, max = 9.98852909574461e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.935288184949611e-19,3.3271269256547438e-19)
sum a = (4.7503346665621786e-17,-3.2352491092019196e-17,4.9669123616687054e-17)
sum e = 1.1963620911647739
sum de = 2.0383000842727483e-17
Info: cfl dt = 0.0022387444116306015 cfl multiplier : 0.9999992271019646 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6916e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.28887150676068 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10678257683156722, dt = 0.0022387444116306015 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.51 us (1.3%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 341.77 us (95.2%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8809523809523814
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0126990442804774e-12, max = 9.989942097184035e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.018671414095393e-19,5.353799425147856e-19)
sum a = (1.0416812149592674e-17,2.2232754541908925e-17,2.7747819300041937e-17)
sum e = 1.1963624659851522
sum de = -1.8431436932253575e-17
Info: cfl dt = 0.0022353393923737704 cfl multiplier : 0.9999994847346431 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6212e+04 | 13440 | 2.030e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.704863873337075 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.10902132124319783, dt = 0.0022353393923737704 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.4%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 317.11 us (95.0%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8808035714285718
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.001201816860755e-12, max = 9.996284159170959e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.1322361575753172e-19,5.631559121236495e-19)
sum a = (4.4043853394229925e-17,-4.737876657551626e-17,2.733574669430828e-17)
sum e = 1.1963630164542427
sum de = 1.973247953923618e-17
Info: cfl dt = 0.002237074230670632 cfl multiplier : 0.999999656489762 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6307e+04 | 13440 | 2.027e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.701151333452856 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1112566606355716, dt = 0.002237074230670632 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 310.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8806547619047622
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9731550700828786e-12, max = 9.968301460352228e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.809275832072758e-19,6.20205208193607e-19)
sum a = (-1.3224655718894102e-18,1.5639592850170416e-17,-1.1145126522517276e-17)
sum e = 1.1963636387177996
sum de = 1.4094628242311558e-17
Info: cfl dt = 0.002310979609685739 cfl multiplier : 0.9999997709931746 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5553e+04 | 13440 | 2.050e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.28033274981194 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11349373486624223, dt = 0.002310979609685739 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1192.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 350.67 us (95.2%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8805059523809526
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9641397520499365e-12, max = 9.984039490394174e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.0311190234923215e-20,5.412945020810935e-19)
sum a = (3.469076355246134e-18,2.4532694666933986e-17,1.7973073768685428e-17)
sum e = 1.1963646895362363
sum de = 1.9949319973733282e-17
Info: cfl dt = 0.0023188786563303684 cfl multiplier : 0.999999847328783 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6814e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.35886863927743 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11580471447592797, dt = 0.0023188786563303684 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.33 us (1.3%)
patch tree reduce : 1183.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1533.00 ns (0.5%)
LB compute : 310.41 us (94.8%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.880654761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.976802571852179e-12, max = 9.999472653258428e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.1384599622737816e-19,6.338311555488987e-19)
sum a = (9.142261996974618e-18,1.839952100020049e-17,7.702403647870387e-18)
sum e = 1.1963650753466848
sum de = -4.4885969940899884e-17
Info: cfl dt = 0.002276407096007445 cfl multiplier : 0.9999998982191887 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6212e+04 | 13440 | 2.030e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.12644855740082 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.11812359313225834, dt = 0.0018764068677416673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.3%)
patch tree reduce : 1312.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 : 341.78 us (95.2%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.880505952380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.941959079526086e-12, max = 9.997965675519896e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.293716320326597e-19,6.151141948960255e-19)
sum a = (1.3243821886602644e-17,2.315273059191895e-17,-1.0241920869252226e-17)
sum e = 1.1963620813292217
sum de = -2.4069288229178198e-17
Info: cfl dt = 0.0022812681403103683 cfl multiplier : 0.9999999321461258 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7135e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.742632407368454 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 71 [SPH][rank=0]
Info: time since start : 403.649168921 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1852.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1833.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1771.76 ms [sph::CartesianRender][rank=0]
---------------- t = 0.12000000000000001, dt = 0.0022812681403103683 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.92 us (1.6%)
patch tree reduce : 1382.00 ns (0.2%)
gen split merge : 622.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.2%)
LB compute : 610.66 us (96.3%)
LB move op cnt : 0
LB apply : 3.99 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8736607142857145
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9932028371329762e-12, max = 9.995064041482613e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.007161313856643e-19,5.814236657208537e-19)
sum a = (-6.669826362572678e-18,4.446550908381785e-17,1.1831215432208996e-17)
sum e = 1.1963644079371574
sum de = -2.168404344971009e-18
Info: cfl dt = 0.002317079434052929 cfl multiplier : 0.999999954764084 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.1030e+04 | 13440 | 2.202e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.2927233228532 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12228126814031037, dt = 0.002317079434052929 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.4%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 511.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 323.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.855133928571429
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9710356512414704e-12, max = 9.993701678389927e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.060363028668284e-19,6.453608033110686e-19)
sum a = (-3.298497462640109e-17,5.9798443250651594e-18,4.2002656533270184e-17)
sum e = 1.1963641152987432
sum de = 3.0357660829594124e-18
Info: cfl dt = 0.0023210631200026497 cfl multiplier : 0.9999999698427228 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6523e+04 | 13440 | 2.020e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.28745832845608 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1245983475743633, dt = 0.0023210631200026497 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 981.00 ns (0.3%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 337.27 us (95.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8541666666666665
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9992685653796995e-12, max = 9.998235741529728e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-8.62477546884398e-20,7.777271490481881e-19)
sum a = (3.8006510566039137e-17,-2.207942520024059e-17,1.453993397789281e-17)
sum e = 1.1963633827414422
sum de = -1.951563910473908e-17
Info: cfl dt = 0.002311183288082106 cfl multiplier : 0.9999999798951485 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7174e+04 | 13440 | 2.001e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.76321998809413 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12691941069436596, dt = 0.002311183288082106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.56 us (1.3%)
patch tree reduce : 982.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 341.18 us (95.5%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.8781249999999998
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0228626464921468e-12, max = 9.964787376586284e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.461420287776341e-19,7.799731843265328e-19)
sum a = (-4.237639680358675e-17,-7.099148519244023e-17,-3.650436217188214e-17)
sum e = 1.1963625276752836
sum de = -1.1275702593849246e-17
Info: cfl dt = 0.002288895772943046 cfl multiplier : 0.9999999865967656 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7138e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.563131553956254 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.12923059398244807, dt = 0.002288895772943046 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.3%)
patch tree reduce : 1111.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 342.04 us (95.3%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8777529761904757
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9551060294724148e-12, max = 9.997679408612577e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.8332335417084355e-20,6.197560011379381e-19)
sum a = (9.123095829266077e-18,-2.25394132252456e-17,-4.1406109563341806e-17)
sum e = 1.1963617330250653
sum de = 1.0408340855860843e-17
Info: cfl dt = 0.0022695190253598937 cfl multiplier : 0.9999999910645103 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7354e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.294239886282845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13151948975539113, dt = 0.0022695190253598937 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.2%)
patch tree reduce : 971.00 ns (0.3%)
gen split merge : 552.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 341.80 us (95.5%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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.8781994047619046
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9587277192712762e-12, max = 9.99053924623291e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.197885481783886e-20,5.246738410213421e-19)
sum a = (3.0800031507627276e-17,-3.572573660872262e-17,-2.9911200480143634e-18)
sum e = 1.1963611578317976
sum de = 5.442694905877232e-17
Info: cfl dt = 0.002337057402918551 cfl multiplier : 0.9999999940430069 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7181e+04 | 13440 | 2.001e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.83966945795527 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.13378900878075103, dt = 0.002337057402918551 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (1.3%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 320.85 us (95.2%)
LB move op cnt : 0
LB apply : 2.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (72.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8793898809523806
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9228321287501156e-12, max = 9.999966891177991e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.007161313856643e-19,5.716159783387481e-19)
sum a = (-2.014364226167783e-17,2.1466107833567237e-18,5.767818594789412e-17)
sum e = 1.1963611909520022
sum de = -1.3010426069826053e-18
Info: cfl dt = 0.002315601184836923 cfl multiplier : 0.9999999960286713 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6729e+04 | 13440 | 2.014e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.771916334507274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1361260661836696, dt = 0.002315601184836923 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 319.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.880059523809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.975232740735355e-12, max = 9.994442581052923e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.25824851045217e-19,7.648498801190112e-19)
sum a = (-3.233332492431065e-17,3.5265748583717605e-17,1.1542824502469527e-17)
sum e = 1.1963611399069671
sum de = -2.688821387764051e-17
Info: cfl dt = 0.002298001355327129 cfl multiplier : 0.9999999973524476 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7484e+04 | 13440 | 1.992e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.85683749079672 (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 : 4.64 us (1.4%)
patch tree reduce : 992.00 ns (0.3%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 319.57 us (95.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.880059523809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0087180063455226e-12, max = 9.975557151447191e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.0364053190326063e-19,7.407424347981106e-19)
sum a = (-3.204583240868252e-17,-1.8246191658532154e-17,-2.797182388513552e-17)
sum e = 1.1963587770317898
sum de = 2.1250362580715887e-17
Info: cfl dt = 0.0022886374935170784 cfl multiplier : 0.9999999982349651 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7938e+04 | 13440 | 1.978e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.357970667000195 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 80 [SPH][rank=0]
Info: time since start : 412.200686575 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1820.89 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1814.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1753.92 ms [sph::CartesianRender][rank=0]
---------------- t = 0.14, dt = 0.0022886374935170784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.90 us (1.8%)
patch tree reduce : 1213.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 514.88 us (95.7%)
LB move op cnt : 0
LB apply : 3.93 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 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.8683035714285716
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.974793055265601e-12, max = 9.99918691214252e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.773808022198331e-19,6.423660896066089e-19)
sum a = (3.9482305479596886e-18,-2.207942520024059e-17,-3.206140491994571e-17)
sum e = 1.1963614781244118
sum de = 1.3444106938820255e-17
Info: cfl dt = 0.0022764891433853266 cfl multiplier : 0.9999999988233101 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6350e+04 | 13440 | 2.026e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.674386371141715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14228863749351708, dt = 0.0022764891433853266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 324.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8633184523809527
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9226894137283295e-12, max = 9.99975113685314e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.779094317738616e-19,5.557439957051117e-19)
sum a = (5.3741934254752264e-17,2.9132574916984108e-18,2.7965834457726604e-17)
sum e = 1.1963620799665686
sum de = -3.122502256758253e-17
Info: cfl dt = 0.002371944321834539 cfl multiplier : 0.9999999992155401 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7235e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.99797470513437 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1445651266369024, dt = 0.002371944321834539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.13 us (1.2%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 329.36 us (95.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8633928571428573
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.967372451862924e-12, max = 9.99340990763245e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8988828659170044e-19,6.916291300449713e-19)
sum a = (-2.782927551280324e-17,7.973125766753546e-18,7.032546086456838e-17)
sum e = 1.1963631779773207
sum de = 6.938893903907228e-18
Info: cfl dt = 0.0023558080512841107 cfl multiplier : 0.9999999994770267 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7736e+04 | 13440 | 1.984e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.035848382769736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14693707095873695, dt = 0.0023558080512841107 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.23 us (1.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 315.34 us (95.0%)
LB move op cnt : 0
LB apply : 2.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8635416666666669
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.970173979301769e-12, max = 9.992417179078128e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.587432640653194e-19,9.19152503741298e-19)
sum a = (-2.8327595873225337e-17,-2.1006119808562225e-17,-2.817187076059343e-17)
sum e = 1.1963637725211038
sum de = 1.5395670849294163e-17
Info: cfl dt = 0.0023386387538462928 cfl multiplier : 0.9999999996513512 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7856e+04 | 13440 | 1.981e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.81860792683681 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.14929287901002106, dt = 0.0023386387538462928 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (1.1%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 346.62 us (95.6%)
LB move op cnt : 0
LB apply : 2.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.880059523809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9544931863575613e-12, max = 9.987850554685951e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.6353480599245494e-20,7.298865976194441e-19)
sum a = (2.1370276995024526e-17,1.839952100020049e-17,-1.6878206438334956e-17)
sum e = 1.1963642176693796
sum de = 2.8406096919120216e-17
Info: cfl dt = 0.00234867025815761 cfl multiplier : 0.9999999997675676 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7880e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.52120499118325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15163151776386735, dt = 0.00234867025815761 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.45 us (1.3%)
patch tree reduce : 1193.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 : 318.26 us (95.0%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8718005952380958
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9929053444109385e-12, max = 9.992520210142094e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.4436863828391274e-19,6.971693503982217e-19)
sum a = (-1.1308038948039884e-17,-9.843743735107262e-17,-1.5773756024130212e-17)
sum e = 1.1963646383533293
sum de = 2.2551405187698492e-17
Info: cfl dt = 0.0023531476570893273 cfl multiplier : 0.9999999998450452 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7706e+04 | 13440 | 1.985e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.594347500990324 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15398018802202496, dt = 0.0023531476570893273 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 314.26 us (94.4%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.8715773809523812
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9548265610141915e-12, max = 9.999094568530733e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.187312890703316e-19,6.708158697989762e-19)
sum a = (1.8006614562175376e-17,1.9932814416883866e-18,2.6703263159926387e-17)
sum e = 1.196364869790572
sum de = -1.7889335846010823e-18
Info: cfl dt = 0.002378029105274266 cfl multiplier : 0.9999999998966969 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7564e+04 | 13440 | 1.989e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.58624881220424 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15633333567911428, dt = 0.002378029105274266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.5%)
patch tree reduce : 1213.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 319.64 us (94.9%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.8718005952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9597254794748964e-12, max = 9.99713773142279e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.887372765678255e-19,7.715879859540457e-19)
sum a = (-1.1705736927992135e-17,4.676544920884291e-17,2.6276815928411326e-17)
sum e = 1.196365073897868
sum de = -6.288372600415926e-18
Info: cfl dt = 0.0023708558449166924 cfl multiplier : 0.9999999999311312 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7352e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.90158314960697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.15871136478438855, dt = 0.0012886352156114556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.5%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 310.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8718005952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0068164817775032e-12, max = 9.993477474135327e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.708158697989762e-19,8.016848586838658e-19)
sum a = (2.7393245197433908e-17,-2.3612718616923964e-17,9.870576369899222e-18)
sum e = 1.196359881190642
sum de = 8.456776945386935e-18
Info: cfl dt = 0.0023696808830296176 cfl multiplier : 0.9999999999540874 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9297e+04 | 13440 | 1.939e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.919332630007286 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 89 [SPH][rank=0]
Info: time since start : 420.514493053 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1807.31 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1808.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1754.30 ms [sph::CartesianRender][rank=0]
---------------- t = 0.16, dt = 0.0023696808830296176 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.39 us (1.6%)
patch tree reduce : 1162.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 577.64 us (96.0%)
LB move op cnt : 0
LB apply : 4.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (76.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8758184523809525
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.988033556301282e-12, max = 9.983198695923621e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.4082185729647e-19,8.178563126879482e-19)
sum a = (-1.9309913966356244e-18,3.695237134206932e-17,-7.194859569238556e-17)
sum e = 1.1963648684955899
sum de = 2.710505431213761e-18
Info: cfl dt = 0.0023383188026472263 cfl multiplier : 0.9999999999693916 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4757e+04 | 13440 | 2.075e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.10335717469193 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1623696808830296, dt = 0.0023383188026472263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 360.65 us (95.3%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8644345238095241
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9969562123473e-12, max = 9.994862216992744e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-19,5.520754714171485e-19)
sum a = (-3.4211609359747786e-17,2.805926952530575e-17,2.946199342447468e-17)
sum e = 1.1963645832104324
sum de = -2.8297676701871666e-17
Info: cfl dt = 0.002334912238225694 cfl multiplier : 0.9999999999795944 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6767e+04 | 13440 | 2.013e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.8184020459868 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16470799968567684, dt = 0.002334912238225694 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 329.64 us (94.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.864285714285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.949386766568923e-12, max = 9.981888842780533e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.1082784479396395e-19,7.438868841877932e-19)
sum a = (-2.4978308066157593e-17,-6.163839535067164e-17,-1.77742247787093e-17)
sum e = 1.196364354139009
sum de = 1.713039432527097e-17
Info: cfl dt = 0.002333569498974721 cfl multiplier : 0.9999999999863963 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7078e+04 | 13440 | 2.004e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.95220466903514 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16704291192390253, dt = 0.002333569498974721 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.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 : 1102.00 ns (0.3%)
LB compute : 331.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8639136904761904
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.987765447599929e-12, max = 9.991249059239225e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-7.378974567788739e-19,6.465586887928525e-19)
sum a = (-6.8902372912209125e-18,1.2879664700140343e-17,7.872383597735521e-17)
sum e = 1.1963640609222967
sum de = 1.8431436932253575e-17
Info: cfl dt = 0.002332258986644706 cfl multiplier : 0.9999999999909308 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7052e+04 | 13440 | 2.004e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.91186988573958 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.16937648142287726, dt = 0.002332258986644706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1071.00 ns (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 349.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8790922619047619
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.979857838911095e-12, max = 9.981097053864244e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-5.318611539120454e-19,9.419871957378033e-19)
sum a = (-5.348798253261408e-17,1.8092862316863815e-17,-1.3839170971049236e-17)
sum e = 1.1963636561298336
sum de = -2.5153490401663703e-17
Info: cfl dt = 0.0023316725625943907 cfl multiplier : 0.9999999999939538 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6963e+04 | 13440 | 2.007e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.83248461506304 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17170874040952197, dt = 0.0023316725625943907 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1202.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 331.48 us (94.9%)
LB move op cnt : 0
LB apply : 2.90 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.879910714285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9998416872802356e-12, max = 9.994148634225233e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.6415718646230135e-19,7.99438823405521e-19)
sum a = (-1.3885888504838806e-17,2.3306059933587286e-17,6.168391499897943e-17)
sum e = 1.1963631373627572
sum de = -2.6020852139652106e-18
Info: cfl dt = 0.0023325911788819897 cfl multiplier : 0.9999999999959691 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7258e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.00643581277607 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17404041297211637, dt = 0.0023325911788819897 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 342.53 us (94.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (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.8796130952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.986753673198763e-12, max = 9.98672645388712e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.827009737009971e-19,1.0369196201691763e-18)
sum a = (-1.946324330802458e-17,-9.199760500100245e-18,-1.1202625025642903e-17)
sum e = 1.19636248785177
sum de = 4.868067754459915e-17
Info: cfl dt = 0.002267387981516367 cfl multiplier : 0.9999999999973127 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7561e+04 | 13440 | 1.989e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.212164139066005 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17637300415099835, dt = 0.002267387981516367 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 328.00 us (94.9%)
LB move op cnt : 0
LB apply : 2.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.8793898809523808
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9490255669734797e-12, max = 9.982515401263303e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.25824851045217e-19,9.184786931577946e-19)
sum a = (2.2663993315351126e-17,1.0273065891778608e-17,4.8586235141154416e-18)
sum e = 1.196361487100988
sum de = -9.75781955236954e-19
Info: cfl dt = 0.002270212219811494 cfl multiplier : 0.9999999999982085 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7396e+04 | 13440 | 1.994e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.93178038281746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.17864039213251473, dt = 0.001359607867485263 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (1.1%)
patch tree reduce : 1082.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 : 345.18 us (95.6%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8797619047619047
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.976280913977738e-12, max = 9.996370665337637e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.162417671909459e-19,9.496237156841757e-19)
sum a = (-1.8102445400718085e-17,-9.046431158431908e-18,2.620973434143143e-18)
sum e = 1.1963586473135241
sum de = 1.6263032587282567e-18
Info: cfl dt = 0.002274135019664438 cfl multiplier : 0.9999999999988057 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7826e+04 | 13440 | 1.982e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.700992540323572 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 98 [SPH][rank=0]
Info: time since start : 428.824235541 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1810.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1797.01 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1754.43 ms [sph::CartesianRender][rank=0]
---------------- t = 0.18, dt = 0.002274135019664438 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (1.4%)
patch tree reduce : 972.00 ns (0.1%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 685.11 us (96.7%)
LB move op cnt : 0
LB apply : 4.01 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8796130952380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.998491974685229e-12, max = 9.997370019279295e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.1082784479396395e-19,9.632496630394674e-19)
sum a = (-1.74843364921176e-17,-2.0546131783557215e-17,-3.25824851045217e-18)
sum e = 1.1963604883444545
sum de = 1.5287250632045613e-17
Info: cfl dt = 0.002281048900899915 cfl multiplier : 0.9999999999992039 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6485e+04 | 13440 | 2.021e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.499167174716305 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18227413501966444, dt = 0.002281048900899915 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (1.1%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 350.61 us (95.7%)
LB move op cnt : 0
LB apply : 2.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8560267857142858
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.021286861762794e-12, max = 9.946671708493785e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-19,9.35698296958438e-19)
sum a = (3.415411085662216e-17,3.5265748583717605e-17,1.7283091731177907e-17)
sum e = 1.1963597910233421
sum de = -2.417770844642675e-17
Info: cfl dt = 0.0022927864132330365 cfl multiplier : 0.9999999999994692 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7495e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.23888982603918 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.18455518392056436, dt = 0.0022927864132330365 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.58 us (1.3%)
patch tree reduce : 981.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 : 336.62 us (95.4%)
LB move op cnt : 0
LB apply : 3.00 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8550595238095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0104152236490007e-12, max = 9.9435835711045e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.216556895879279e-19,1.0074216901802482e-18)
sum a = (-1.89265906121854e-17,-2.085279046689389e-17,-3.1351058829247864e-17)
sum e = 1.196359330320871
sum de = -2.699663409488906e-17
Info: cfl dt = 0.0023089519876503717 cfl multiplier : 0.9999999999996462 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7623e+04 | 13440 | 1.987e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.52987559715226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1868479703337974, dt = 0.0023089519876503717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 961.00 ns (0.3%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 314.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.8550595238095235
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.981917141309363e-12, max = 9.99372445834369e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-19,8.836651463434505e-19)
sum a = (6.703367156062626e-18,-8.126455108421884e-18,-3.500221377772515e-17)
sum e = 1.1963590929442838
sum de = 2.7863995832877464e-17
Info: cfl dt = 0.0022647495346994994 cfl multiplier : 0.9999999999997641 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7822e+04 | 13440 | 1.982e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.94559716684278 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1891569223214478, dt = 0.0022647495346994994 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.4%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 320.32 us (94.9%)
LB move op cnt : 0
LB apply : 2.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8694196428571426
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.958725999465033e-12, max = 9.998293606022721e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.599880250050123e-19,8.014602551560313e-19)
sum a = (-5.3904846680274874e-18,3.5265748583717605e-17,-2.347376390103703e-17)
sum e = 1.1963590128531354
sum de = -7.37257477290143e-18
Info: cfl dt = 0.0022813975429532064 cfl multiplier : 0.9999999999998428 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7012e+04 | 13440 | 2.006e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.65130698143697 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19142167185614728, dt = 0.0022813975429532064 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1473.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 317.32 us (94.5%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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.8796875
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.948860977311666e-12, max = 9.990372511808555e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8749251562813265e-19,7.594593954509838e-19)
sum a = (3.41732770243307e-17,-3.419244319203925e-17,4.512195032783542e-17)
sum e = 1.196359249433555
sum de = 2.0599841277224584e-17
Info: cfl dt = 0.002303205396171164 cfl multiplier : 0.9999999999998952 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6938e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.905017538098164 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19370306939910048, dt = 0.002303205396171164 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.4%)
LB compute : 313.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.8800595238095237
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9829246325168233e-12, max = 9.965567298041258e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.270696119849099e-19,9.318800369852518e-19)
sum a = (-3.336829798057193e-17,-3.618572463372763e-17,2.3694174829685268e-18)
sum e = 1.1963597003679338
sum de = -4.553649124439119e-18
Info: cfl dt = 0.0023319517891497625 cfl multiplier : 0.9999999999999302 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7690e+04 | 13440 | 1.986e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.76012626227933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.19600627479527163, dt = 0.0023319517891497625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 316.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8797619047619047
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9567868737282227e-12, max = 9.989388765849816e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.31238773442199e-19,8.863229547561585e-19)
sum a = (-5.5035650575078864e-17,8.586443133426895e-18,-7.49636734500356e-18)
sum e = 1.196360320935868
sum de = -3.5344990823027445e-17
Info: cfl dt = 0.0023667335243434846 cfl multiplier : 0.9999999999999535 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7286e+04 | 13440 | 1.997e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.028817504591125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.1983382265844214, dt = 0.0016617734155785768 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1172.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 313.41 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
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.8794642857142856
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9779545412385763e-12, max = 9.96948232796386e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8749251562813265e-19,8.596325688651612e-19)
sum a = (2.920923958781828e-17,0,-2.792750212230952e-17)
sum e = 1.1963594480816977
sum de = -1.8214596497756474e-17
Info: cfl dt = 0.0023307892037228513 cfl multiplier : 0.9999999999999689 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5664e+04 | 13440 | 2.047e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.228287759144816 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 107 [SPH][rank=0]
Info: time since start : 437.26745500000004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1862.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1827.77 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1769.93 ms [sph::CartesianRender][rank=0]
---------------- t = 0.19999999999999998, dt = 0.0023307892037228513 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.98 us (1.9%)
patch tree reduce : 1352.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 515.10 us (95.8%)
LB move op cnt : 0
LB apply : 3.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 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.8796874999999997
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.996888409229304e-12, max = 9.9899953908804e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.0665868333667484e-19,7.7235538134081345e-19)
sum a = (-1.4384208865260904e-17,2.2692742566913938e-17,-5.0693315703612274e-17)
sum e = 1.1963612272301805
sum de = -6.288372600415926e-18
Info: cfl dt = 0.00234890846631786 cfl multiplier : 0.9999999999999792 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6719e+04 | 13440 | 2.014e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.654022207113755 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20233078920372283, dt = 0.00234890846631786 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1012.00 ns (0.3%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 331.98 us (95.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.872247023809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9678925494735442e-12, max = 9.994329163536988e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.216556895879279e-19,6.3038723478877e-19)
sum a = (4.286513408015458e-17,-5.795849115063154e-17,4.39564077540597e-17)
sum e = 1.1963619121865465
sum de = -1.3444106938820255e-17
Info: cfl dt = 0.0023824547302233774 cfl multiplier : 0.9999999999999861 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7678e+04 | 13440 | 1.986e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.58103775309942 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20467969767004068, dt = 0.0023824547302233774 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.4%)
patch tree reduce : 1002.00 ns (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 318.88 us (95.2%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8639136904761904
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9606532823575603e-12, max = 9.998906242770166e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.51649702090434e-19,8.518088793122602e-19)
sum a = (-3.6942788258215045e-17,1.6252910216843767e-17,-3.107794093940114e-17)
sum e = 1.1963624455964534
sum de = -4.380176776841438e-17
Info: cfl dt = 0.0024190986990475422 cfl multiplier : 0.9999999999999908 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7643e+04 | 13440 | 1.987e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.167134704388715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20706215240026407, dt = 0.0024190986990475422 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.4%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 307.82 us (94.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8639136904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.968137447500397e-12, max = 9.992911229151565e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.612327859447051e-19,6.860140418491093e-19)
sum a = (5.839931300792801e-17,4.132225757961693e-17,3.75704802506698e-17)
sum e = 1.1963628487516167
sum de = -1.7780915628762273e-17
Info: cfl dt = 0.002402422660886521 cfl multiplier : 0.9999999999999938 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7522e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.752135188657945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.20948125109931162, dt = 0.002402422660886521 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 972.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 344.75 us (94.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 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.8713541666666664
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.952457156579176e-12, max = 9.990351146903693e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8749251562813265e-19,8.475414122834051e-19)
sum a = (-4.446550908381785e-18,5.366526958391809e-19,6.128382124806361e-18)
sum e = 1.1963628895447656
sum de = -1.3877787807814457e-17
Info: cfl dt = 0.0023672985008428844 cfl multiplier : 0.9999999999999959 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7842e+04 | 13440 | 1.981e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.65643449117893 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21188367376019815, dt = 0.0023672985008428844 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 312.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8798363095238093
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.974213976188521e-12, max = 9.997644232152435e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.31238773442199e-19,8.389690443043892e-19)
sum a = (-1.5246686412145302e-17,2.2999401250250612e-17,-2.5112471240117386e-17)
sum e = 1.1963627233291232
sum de = -1.4203048459560108e-17
Info: cfl dt = 0.0023687985322400156 cfl multiplier : 0.9999999999999973 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7643e+04 | 13440 | 1.987e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.89230193717017 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21425097226104103, dt = 0.0023687985322400156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.5%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 307.42 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8703869047619048
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9643790252726505e-12, max = 9.994682548199613e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.629124255226085e-19,7.282395050819913e-19)
sum a = (3.584073361497387e-17,1.433629344598955e-17,1.5888753030381466e-17)
sum e = 1.1963626055035523
sum de = 5.095750210681871e-18
Info: cfl dt = 0.002369940516030415 cfl multiplier : 0.9999999999999982 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7393e+04 | 13440 | 1.994e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.76087536367088 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21661977079328104, dt = 0.002369940516030415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.4%)
LB compute : 311.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8686011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.957484784485871e-12, max = 9.997199810851695e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.216556895879279e-19,8.138508831082334e-19)
sum a = (-2.2999401250250612e-17,-1.5102940154331236e-17,-2.263524406378831e-17)
sum e = 1.196362431018313
sum de = -6.505213034913027e-19
Info: cfl dt = 0.002340249886180727 cfl multiplier : 0.9999999999999988 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6682e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.33016738721624 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.21898971130931147, dt = 0.0010102886906885045 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.4%)
patch tree reduce : 961.00 ns (0.3%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 312.18 us (95.1%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8683779761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.018872407701232e-12, max = 9.966633573850807e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.024895218793857e-19,7.469564657348645e-19)
sum a = (9.841827118336408e-18,-3.557240726705428e-17,3.507887844855932e-17)
sum e = 1.1963590904526293
sum de = 2.938187887435717e-17
Info: cfl dt = 0.002331083218874228 cfl multiplier : 0.9999999999999991 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9342e+04 | 13440 | 1.938e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.7647568306672 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 116 [SPH][rank=0]
Info: time since start : 445.65329563600005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.70 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1836.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1778.09 ms [sph::CartesianRender][rank=0]
---------------- t = 0.21999999999999997, dt = 0.002331083218874228 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.99 us (1.8%)
patch tree reduce : 1382.00 ns (0.2%)
gen split merge : 692.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.2%)
LB compute : 599.21 us (95.9%)
LB move op cnt : 0
LB apply : 4.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.96 us (79.8%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.987994614731013e-12, max = 9.96663246144521e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.229004505276207e-19,8.633759609957359e-19)
sum a = (-6.899820375075184e-18,2.6985964133627386e-17,8.950600319889196e-18)
sum e = 1.1963620430734783
sum de = -1.0299920638612292e-17
Info: cfl dt = 0.0023089568631086206 cfl multiplier : 0.9999999999999994 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6877e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.75792450414892 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2223310832188742, dt = 0.0023089568631086206 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.73 us (1.3%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 345.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8754464285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9548176965331554e-12, max = 9.97648987534468e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.1082784479396395e-19,8.424129650645178e-19)
sum a = (-1.9760318907506986e-17,6.7464910334068465e-18,1.9674071152818544e-17)
sum e = 1.1963617905196862
sum de = 8.131516293641283e-18
Info: cfl dt = 0.0023147290598281296 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7536e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.76918164020041 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22464004008198282, dt = 0.0023147290598281296 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.4%)
LB compute : 320.58 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.8598214285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9978547652912838e-12, max = 9.99443200541871e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.6415718646230135e-19,9.002858074032019e-19)
sum a = (-7.729236282662347e-17,-1.7939532975195477e-17,-2.0685086499444145e-17)
sum e = 1.1963616132207742
sum de = 5.9631119486702744e-18
Info: cfl dt = 0.0023720288434061283 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6924e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.4937621380287 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22695476914181095, dt = 0.0023720288434061283 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.83 us (1.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 355.68 us (95.3%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8579613095238097
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9621719549270846e-12, max = 9.995380779994212e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.6832634791959046e-19,8.079737574632312e-19)
sum a = (1.0182026595163032e-17,3.4729095887878426e-17,3.944876468610694e-17)
sum e = 1.1963615782887096
sum de = -1.984089975648473e-17
Info: cfl dt = 0.0023624615635409693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7210e+04 | 13440 | 2.000e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.70268011048325 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.22932679798521707, dt = 0.0023624615635409693 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1343.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 328.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8575892857142855
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9638677783036807e-12, max = 9.99987888999495e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.20410928648235e-19,9.803195311548878e-19)
sum a = (-5.195948065785784e-17,4.944871268803882e-17,3.751298174754418e-17)
sum e = 1.1963613608264425
sum de = 1.919037845299343e-17
Info: cfl dt = 0.0023566248850863257 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6477e+04 | 13440 | 2.022e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.067036512157735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23168925954875805, dt = 0.0023566248850863257 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1262.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 339.08 us (94.9%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741071428571427
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.98551118807271e-12, max = 9.99618357685432e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0541392239698198e-19,1.0568344663038335e-18)
sum a = (1.3272571138165458e-18,-2.74459521586324e-17,-3.3181427845413644e-18)
sum e = 1.1963611546641035
sum de = 1.1275702593849246e-17
Info: cfl dt = 0.0023547729450244903 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6543e+04 | 13440 | 2.020e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.0042266403815 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2340458844338444, dt = 0.0023547729450244903 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1413.00 ns (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 333.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741815476190475
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9630431692629922e-12, max = 9.989505882498658e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.724955093768796e-19,1.008619575662032e-18)
sum a = (-8.025832727952037e-18,2.821259886697408e-17,9.305174422497228e-18)
sum e = 1.196360959592444
sum de = -7.15573433840433e-18
Info: cfl dt = 0.0023620306199504905 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6530e+04 | 13440 | 2.020e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.96333530001931 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23640065737886887, dt = 0.0023620306199504905 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 310.20 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
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.8746279761904763
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.955180777806576e-12, max = 9.996772327880002e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.583083854271089e-21,1.042310104837204e-18)
sum a = (1.2587380642585075e-17,-2.8365928208642422e-18,1.2045936404818758e-17)
sum e = 1.196360795671316
sum de = -2.8189256484623115e-17
Info: cfl dt = 0.00242295882150656 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6393e+04 | 13440 | 2.024e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.006114073969556 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.23876268799881936, dt = 0.0012373120011806016 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 319.41 us (94.5%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.874404761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9996655041198327e-12, max = 9.996309547259858e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,1.2458009010552416e-19,1.0682143783807804e-18)
sum a = (7.273560645391756e-18,1.2343012004301162e-17,-4.100122427049885e-17)
sum e = 1.1963589833415809
sum de = -4.0549161250957866e-17
Info: cfl dt = 0.002422983766366431 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7407e+04 | 13440 | 1.994e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 22.34017074471085 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 125 [SPH][rank=0]
Info: time since start : 454.098102444 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1809.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1811.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1775.30 ms [sph::CartesianRender][rank=0]
---------------- t = 0.23999999999999996, dt = 0.002422983766366431 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.69 us (1.7%)
patch tree reduce : 1163.00 ns (0.2%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 548.44 us (96.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.6%)
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.874553571428571
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9599276885032622e-12, max = 9.984966810323005e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1499700625125307e-19,9.424364027934724e-19)
sum a = (-5.8025572737611444e-18,1.0963047929286125e-17,-2.7539387226211542e-17)
sum e = 1.1963607132425318
sum de = -2.970713952610282e-17
Info: cfl dt = 0.0024419164394730132 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.1281e+04 | 13440 | 2.193e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.77213153032746 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2424229837663664, dt = 0.0024419164394730132 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1151.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 327.39 us (95.1%)
LB move op cnt : 0
LB apply : 3.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8746279761904756
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9799801062157246e-12, max = 9.931109103411786e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.5332934166833742e-19,8.8164371459294e-19)
sum a = (1.0378479814175589e-17,1.364631140848203e-17,3.039394832930254e-17)
sum e = 1.1963606841353986
sum de = 2.8189256484623115e-17
Info: cfl dt = 0.002446332265148182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6531e+04 | 13440 | 2.020e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.51665719819701 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2448649002058394, dt = 0.002446332265148182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.3%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 321.48 us (95.1%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.8529761904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9978223922171827e-12, max = 9.97402321296628e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.8332335417084355e-20,1.0191010736276411e-18)
sum a = (-6.780031826896796e-17,6.1331736667334966e-18,-6.409885213025575e-18)
sum e = 1.1963607046424451
sum de = -1.3010426069826053e-17
Info: cfl dt = 0.002448874954109979 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6824e+04 | 13440 | 2.011e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.78731130359859 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24731123247098757, dt = 0.002448874954109979 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (1.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 327.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.850818452380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9635004659563973e-12, max = 9.993595379140404e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1499700625125307e-19,9.702872402449478e-19)
sum a = (4.112101281867724e-17,1.3492982066813693e-17,1.4754954421873016e-17)
sum e = 1.1963607955187276
sum de = -1.6046192152785466e-17
Info: cfl dt = 0.002466698426928572 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6609e+04 | 13440 | 2.018e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.6919830429335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.24976010742509755, dt = 0.002466698426928572 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.71 us (1.4%)
patch tree reduce : 1263.00 ns (0.4%)
gen split merge : 492.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 322.16 us (94.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8500744047619047
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0058275341915513e-12, max = 9.99447815505977e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.583083854271089e-21,1.0313793998159259e-18)
sum a = (2.576891248413496e-17,-5.795849115063154e-17,-3.332277833226414e-17)
sum e = 1.1963609773817183
sum de = -1.9081958235744878e-17
Info: cfl dt = 0.002440569487904316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6382e+04 | 13440 | 2.025e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.860048127104285 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2522268058520261, dt = 0.002440569487904316 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1162.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 332.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8725446428571426
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.989282707417342e-12, max = 9.997869526484232e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.0665868333667484e-19,8.889807631688665e-19)
sum a = (5.1192833949516156e-17,1.5026275483497067e-17,2.396968849049556e-18)
sum e = 1.196361111004047
sum de = 2.4936649967166602e-17
Info: cfl dt = 0.0024496404504118926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6566e+04 | 13440 | 2.019e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.51562692642243 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25466737533993045, dt = 0.0024496404504118926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.4%)
patch tree reduce : 1052.00 ns (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 321.31 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8739583333333334
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9761883158433882e-12, max = 9.973713966827166e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.8332335417084355e-20,9.431850812195872e-19)
sum a = (1.178719314075344e-17,4.8912059992199634e-17,1.073904334419254e-17)
sum e = 1.1963613172483938
sum de = 3.404394821604484e-17
Info: cfl dt = 0.0024639897878747227 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6886e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.88746745080172 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25711701579034235, dt = 0.0024639897878747227 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (1.2%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 341.21 us (95.4%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8742559523809526
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0104776003893395e-12, max = 9.968250115413442e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.583083854271088e-20,9.840629232854625e-19)
sum a = (6.344001511527461e-18,-4.599880250050123e-19,1.0737845458710755e-17)
sum e = 1.1963615182598362
sum de = 1.3444106938820255e-17
Info: cfl dt = 0.002481263818146155 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6941e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.1809080823465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.25958100557821706, dt = 0.00041899442178289226 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (1.3%)
patch tree reduce : 1263.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 349.11 us (95.3%)
LB move op cnt : 0
LB apply : 3.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.8744047619047621
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.016259463360108e-12, max = 9.707022847621864e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.708158697989762e-20,9.720840684676235e-19)
sum a = (-6.487747769341528e-17,-1.7019556925185454e-17,-5.83561891305838e-17)
sum e = 1.1963588307229975
sum de = -2.6020852139652106e-17
Info: cfl dt = 0.0024853943108784065 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9703e+04 | 13440 | 1.928e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.822826239488124 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 134 [SPH][rank=0]
Info: time since start : 462.59804081600004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1870.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1848.05 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1805.93 ms [sph::CartesianRender][rank=0]
---------------- t = 0.25999999999999995, dt = 0.0024853943108784065 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.38 us (1.5%)
patch tree reduce : 1353.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.2%)
LB compute : 596.11 us (96.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (71.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8745535714285717
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.001728177919302e-12, max = 9.99314651731714e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.8749251562813265e-19,8.220489118741918e-19)
sum a = (3.0522122075853417e-17,-1.5179604825165406e-17,2.4355407615629972e-17)
sum e = 1.1963616322350619
sum de = -4.336808689942018e-18
Info: cfl dt = 0.002493799778354422 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5711e+04 | 13440 | 2.045e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.745556225129135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26248539431087836, dt = 0.002493799778354422 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 992.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 334.56 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8742559523809523
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0071416181101194e-12, max = 9.997001172221041e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8207859323115067e-19,9.755279892277522e-19)
sum a = (-2.876841773052181e-17,1.5946251533507093e-17,-4.0009375091581794e-17)
sum e = 1.1963617806134743
sum de = 5.204170427930421e-18
Info: cfl dt = 0.00243857549979671 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7028e+04 | 13440 | 2.005e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.773194804014835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26497919408923276, dt = 0.00243857549979671 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.4%)
LB compute : 314.58 us (94.5%)
LB move op cnt : 0
LB apply : 2.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.8651785714285711
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.016829252835218e-12, max = 9.997706320444876e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.5332934166833742e-19,8.072250790371162e-19)
sum a = (-2.880675006593889e-17,1.9166167708542177e-17,-1.7153720099145247e-17)
sum e = 1.1963616975913787
sum de = 3.469446951953614e-18
Info: cfl dt = 0.002453975179176389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7097e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.827079608163494 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26741776958902946, dt = 0.002453975179176389 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 348.40 us (94.9%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8578125
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.009669131954375e-12, max = 9.986837852212349e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1499700625125307e-19,7.98540409294183e-19)
sum a = (2.8461759047185136e-17,-2.192609585857225e-17,2.3775631042446572e-17)
sum e = 1.1963617720465545
sum de = -1.0842021724855044e-17
Info: cfl dt = 0.0024753587663993823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7449e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.33495079470265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.26987174476820586, dt = 0.0024753587663993823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1102.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 : 314.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8575148809523807
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.006144838310703e-12, max = 9.998835283102092e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.629124255226085e-19,9.084464022478546e-19)
sum a = (1.7335798692376398e-17,-5.197864682556638e-17,5.096283993701365e-17)
sum e = 1.1963618794710977
sum de = 1.474514954580286e-17
Info: cfl dt = 0.0024766384480021126 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7535e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.77867712999434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27234710353460523, dt = 0.0024766384480021126 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 328.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8682291666666664
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9742435036432527e-12, max = 9.998415234188126e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.7311788984672605e-19,1.0655191360467666e-18)
sum a = (1.627207638455231e-17,5.2591964192239737e-17,-5.847837344972575e-17)
sum e = 1.1963619690642986
sum de = -4.553649124439119e-18
Info: cfl dt = 0.002483273394033739 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7433e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.73415817923481 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27482374198260734, dt = 0.002483273394033739 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1322.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 : 408.28 us (95.7%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.8735863095238094
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9874861797465605e-12, max = 9.98801772303858e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,9.583083854271088e-20,7.77577413362965e-19)
sum a = (1.9242832379376346e-17,-1.7632874291858803e-17,3.5845525156901005e-17)
sum e = 1.1963620973209692
sum de = 5.5294310796760726e-18
Info: cfl dt = 0.0024991341210149594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7305e+04 | 13440 | 1.997e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.7688170798054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2773070153766411, dt = 0.0024991341210149594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 341.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.865997023809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.022287905746901e-12, max = 9.992332970725449e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.6832634791959046e-19,9.88255522471706e-19)
sum a = (-1.9606989565838647e-17,-4.983203604220966e-17,-4.9041431624232297e-17)
sum e = 1.1963622583597482
sum de = -2.677979366039196e-17
Info: cfl dt = 0.0024721606821933965 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7221e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.99861776697432 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.27980614949765603, dt = 0.00019385050234393963 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1113.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 323.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865997023809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.025665896979457e-12, max = 9.978247218113176e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.5812088359547295e-19,8.753548158135748e-19)
sum a = (-1.3607979073064945e-18,3.0665868333667484e-19,-3.517470928710203e-17)
sum e = 1.1963590834440427
sum de = 2.688821387764051e-17
Info: cfl dt = 0.002472835467588177 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9632e+04 | 13440 | 1.930e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.615563451319782 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 143 [SPH][rank=0]
Info: time since start : 471.06451527900003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1819.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1815.95 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1802.81 ms [sph::CartesianRender][rank=0]
---------------- t = 0.27999999999999997, dt = 0.002472835467588177 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
patch tree reduce : 1313.00 ns (0.2%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 572.90 us (95.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865848214285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0248629093404063e-12, max = 9.992217185461568e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.156193867210995e-19,7.870107615320132e-19)
sum a = (-4.120726057336568e-18,1.6866227583517116e-18,2.680867708232337e-18)
sum e = 1.1963622268691227
sum de = -1.5504091066542713e-17
Info: cfl dt = 0.0024902344098714285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7228e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.52970304161708 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28247283546758817, dt = 0.0024902344098714285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.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 : 347.92 us (95.2%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8706845238095235
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0037191579624218e-12, max = 9.966903118593154e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.354079348994881e-19,8.441349254445822e-19)
sum a = (6.689950838666647e-17,-2.2462748554411433e-17,8.269003480754165e-18)
sum e = 1.1963623542717852
sum de = -6.830473686658678e-18
Info: cfl dt = 0.0024880373883015014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6888e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.616126639908316 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2849630698774596, dt = 0.0024880373883015014 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 328.34 us (94.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.869642857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.947294716840443e-12, max = 9.9717548851568e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1499700625125307e-19,8.710124809421082e-19)
sum a = (-3.8159839907707476e-17,-1.6176245546009598e-17,2.2150100443665838e-17)
sum e = 1.1963623072801115
sum de = 1.680513367352532e-17
Info: cfl dt = 0.0024605524301107335 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7637e+04 | 13440 | 1.987e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.075786845124625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2874511072657611, dt = 0.0024605524301107335 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (1.3%)
patch tree reduce : 1002.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 311.37 us (94.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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.85922619047619
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9582481022673156e-12, max = 9.982760242478966e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.78531812243708e-19,9.416877243673575e-19)
sum a = (2.1375068536951663e-17,1.0579724575115282e-17,-1.3821202688822478e-17)
sum e = 1.1963621057502638
sum de = 1.5287250632045613e-17
Info: cfl dt = 0.0024693905969228823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7255e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.32595836153215 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.28991165969587185, dt = 0.0024693905969228823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1133.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 315.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 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.8587797619047617
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9598446809233355e-12, max = 9.988243594236169e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.827009737009971e-19,8.707130095716622e-19)
sum a = (-2.191651277471798e-17,-2.9132574916984108e-18,-8.181318263487585e-17)
sum e = 1.1963619138468669
sum de = -5.421010862427522e-20
Info: cfl dt = 0.0024569921848940288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6817e+04 | 13440 | 2.011e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.19554652458691 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2923810502927947, dt = 0.0024569921848940288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 325.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8587053571428573
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.98425710189294e-12, max = 9.988941024049958e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.629124255226085e-19,5.808995908225733e-19)
sum a = (4.042623923924259e-17,2.069946112522555e-17,-3.551850242037401e-17)
sum e = 1.1963616210343317
sum de = 1.3660947373317356e-17
Info: cfl dt = 0.0024552260234267957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7035e+04 | 13440 | 2.005e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.11695794092409 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29483804247768874, dt = 0.0024552260234267957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1142.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 375.39 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8732886904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.942986727478636e-12, max = 9.956848105464856e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.7728705130401514e-19,5.537974317972128e-19)
sum a = (1.2793416945451904e-17,4.0478946200441076e-17,-1.3526522860303641e-17)
sum e = 1.1963613345319886
sum de = -1.5720931501039814e-18
Info: cfl dt = 0.002460410780139873 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7037e+04 | 13440 | 2.005e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.08718169489395 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.29729326850111554, dt = 0.002460410780139873 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 336.59 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744047619047621
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9384577185723047e-12, max = 9.997339321421584e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.156193867210995e-19,5.475834008604589e-19)
sum a = (1.8073696149155273e-17,-2.4149371312763143e-17,5.910366967121694e-18)
sum e = 1.1963610828670372
sum de = -6.559423143537302e-18
Info: cfl dt = 0.0024156506637015404 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7119e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.23386774500617 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.2997536792812554, dt = 0.00024632071874458594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 317.66 us (94.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744047619047617
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0487261486254198e-12, max = 9.953188860277727e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4374625781406634e-20,5.857660005923203e-19)
sum a = (-7.536137142998784e-17,-7.05314971674352e-18,-1.9297935111538405e-17)
sum e = 1.1963590192577707
sum de = 1.1546753136970622e-17
Info: cfl dt = 0.0024165648484480284 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9024e+04 | 13440 | 1.947e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.554089616955921 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 152 [SPH][rank=0]
Info: time since start : 479.449430714 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1840.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1837.37 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1782.10 ms [sph::CartesianRender][rank=0]
---------------- t = 0.3, dt = 0.0024165648484480284 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.02 us (1.5%)
patch tree reduce : 1273.00 ns (0.2%)
gen split merge : 652.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 629.65 us (96.2%)
LB move op cnt : 0
LB apply : 3.86 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 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.8751488095238094
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.959760802308465e-12, max = 9.9991115802357e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-21,5.267701406144639e-19)
sum a = (-1.753704345331609e-17,-6.7464910334068465e-18,7.072315884452063e-18)
sum e = 1.1963608505562404
sum de = 1.6019087098473328e-17
Info: cfl dt = 0.002418677873877649 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4230e+04 | 13440 | 2.092e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.575644806102645 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30241656484844803, dt = 0.002418677873877649 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (1.4%)
patch tree reduce : 1113.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 323.18 us (90.7%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8752976190476194
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.946660628966353e-12, max = 9.996395363651798e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.708158697989762e-20,5.763326524232722e-19)
sum a = (3.5706570441014076e-17,1.0541392239698197e-17,-1.499992200289782e-17)
sum e = 1.1963607091940587
sum de = 3.4450524030726903e-17
Info: cfl dt = 0.0024030582729082537 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6790e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.270705446038896 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3048352427223257, dt = 0.0024030582729082537 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.0%)
patch tree reduce : 1363.00 ns (0.3%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.2%)
LB compute : 451.52 us (96.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.8750744047619048
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.932723106890715e-12, max = 9.996732671840893e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.7728705130401514e-19,5.119463077773883e-19)
sum a = (4.9161220172410686e-18,-5.941511989648075e-18,3.555084532838217e-17)
sum e = 1.1963606371353326
sum de = 2.2199039481640703e-17
Info: cfl dt = 0.0023928416731489716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6914e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.071107073569294 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30723830099523397, dt = 0.0023928416731489716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 337.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8543898809523809
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.943305469249449e-12, max = 9.99752513227431e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.4916018021104833e-19,6.590616185089718e-19)
sum a = (-2.7091378056024367e-17,-1.1653029966793643e-17,-1.0791989882487386e-16)
sum e = 1.1963606325988596
sum de = -2.3310346708438345e-18
Info: cfl dt = 0.002399108306923082 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6683e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.73948487572825 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.30963114266838293, dt = 0.002399108306923082 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 346.20 us (94.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8502976190476186
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9444221926005903e-12, max = 9.999967598318774e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-19,2.322400477808509e-19)
sum a = (4.9956616132315186e-17,2.6755970121124878e-17,-1.7644853146676643e-17)
sum e = 1.1963606882690925
sum de = -1.5124620306172787e-17
Info: cfl dt = 0.0024078999842634297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4313e+04 | 13440 | 2.090e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.32860017517635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.312030250975306, dt = 0.0024078999842634297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1313.00 ns (0.4%)
LB compute : 331.99 us (94.7%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 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.8501488095238094
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9456281643439013e-12, max = 9.994516297595057e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.708158697989762e-20,2.967012602693463e-19)
sum a = (-1.504544165120561e-17,-2.8365928208642422e-18,-3.905346247711825e-17)
sum e = 1.1963607689023368
sum de = -5.55653613398821e-18
Info: cfl dt = 0.0024107296927806756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5872e+04 | 13440 | 2.040e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.48544732044874 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.31443815095956945, dt = 0.0024107296927806756 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 352.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.870386904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9373475223993153e-12, max = 9.99550220685712e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-4.024895218793857e-19,1.7261716962112328e-19)
sum a = (1.778620363352714e-17,1.441295811682372e-17,2.855998565669141e-17)
sum e = 1.1963608473271423
sum de = -1.6994869053710282e-17
Info: cfl dt = 0.0024285729636337136 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5963e+04 | 13440 | 2.037e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.5946849609735 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3168488806523501, dt = 0.0024285729636337136 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1533.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 370.87 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8750000000000002
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9643762105979095e-12, max = 9.995359442971244e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,0,3.345656716701088e-19)
sum a = (-2.0891122802310974e-17,-1.6482904229346272e-17,1.3785266124368961e-17)
sum e = 1.196360943876492
sum de = -1.737433981408021e-17
Info: cfl dt = 0.002377968802553426 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6512e+04 | 13440 | 2.021e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.26660650988694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3192774536159838, dt = 0.0007225463840161983 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 320.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.875
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.2732254224473426e-12, max = 8.534252165938962e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.1499700625125307e-19,3.2627405810088596e-19)
sum a = (-3.14900135451348e-17,1.2649670687637837e-17,7.217499604844271e-17)
sum e = 1.1963593514756743
sum de = -3.848917712323541e-18
Info: cfl dt = 0.0023836948386716864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9154e+04 | 13440 | 1.943e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.384009124304963 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 161 [SPH][rank=0]
Info: time since start : 488.03107441400005 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1873.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1865.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1798.72 ms [sph::CartesianRender][rank=0]
---------------- t = 0.32, dt = 0.0023836948386716864 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.31 us (1.6%)
patch tree reduce : 1382.00 ns (0.2%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 563.62 us (96.0%)
LB move op cnt : 0
LB apply : 3.97 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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.8744791666666665
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.937678134754582e-12, max = 9.998838245187134e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.103929661557534e-20,5.13612117275494e-19)
sum a = (-8.778104810512317e-18,-1.9166167708542177e-18,-1.9276373172866294e-17)
sum e = 1.196360916387183
sum de = -2.710505431213761e-19
Info: cfl dt = 0.0023963465294956003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.0383e+04 | 13440 | 2.226e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.55361071452647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3223836948386717, dt = 0.0023963465294956003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1113.00 ns (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 325.19 us (95.0%)
LB move op cnt : 0
LB apply : 2.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8744791666666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9588691765656886e-12, max = 9.996200632456467e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.545741026080303e-19,3.5633349690940037e-19)
sum a = (2.815510036384846e-17,-2.905591024614994e-17,-2.6597849237529406e-17)
sum e = 1.1963610142239023
sum de = 1.6263032587282567e-18
Info: cfl dt = 0.0024162641920674375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7439e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.28753275284677 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3247800413681673, dt = 0.0024162641920674375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 340.65 us (94.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8743303571428571
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9570554839564358e-12, max = 9.989995818427998e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.5332934166833742e-19,2.9153537912915327e-19)
sum a = (7.168146722994775e-18,1.5792922191838754e-17,1.2733522671362709e-17)
sum e = 1.1963610969398086
sum de = 1.4582519219930035e-17
Info: cfl dt = 0.0024393805922127603 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6655e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.14029258008919 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3271963055602347, dt = 0.0024393805922127603 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1562.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 363.58 us (95.0%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8655505952380953
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.938558064845465e-12, max = 9.998904706599283e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.8571912513441133e-19,3.7089529229733574e-19)
sum a = (-4.358386536922491e-17,7.666467083416871e-19,1.3401942770198118e-17)
sum e = 1.1963611830543492
sum de = 2.927345865710862e-17
Info: cfl dt = 0.0024373418126694747 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7466e+04 | 13440 | 1.992e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.08256329038303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3296356861524475, dt = 0.0024373418126694747 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.05 us (1.2%)
patch tree reduce : 981.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 323.27 us (95.3%)
LB move op cnt : 0
LB apply : 2.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8588541666666665
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9708907588676915e-12, max = 9.995212216564034e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.4978256068089474e-19,4.004680901288754e-19)
sum a = (-1.734538177623067e-17,1.410629943348704e-17,6.678211560945165e-17)
sum e = 1.196361221988853
sum de = 5.963111948670274e-19
Info: cfl dt = 0.0024267983158224086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8146e+04 | 13440 | 1.972e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.48991354087977 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.33207302796511695, dt = 0.0024267983158224086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.73 us (1.2%)
patch tree reduce : 1111.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 367.70 us (95.5%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8581845238095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9784684504978085e-12, max = 9.9869226554988e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.270696119849099e-20,6.219271685736714e-19)
sum a = (1.4144631768904126e-17,-3.848566475875269e-17,3.885461348714213e-17)
sum e = 1.1963612295253974
sum de = 1.7780915628762273e-17
Info: cfl dt = 0.002439761918343808 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7904e+04 | 13440 | 1.979e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.140011336034846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3344998262809394, dt = 0.002439761918343808 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.4%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 342.00 us (95.1%)
LB move op cnt : 0
LB apply : 3.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8619791666666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.973214551563944e-12, max = 9.982929829546502e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.41972867320345e-19,6.81035330315445e-19)
sum a = (2.790594018363741e-17,1.7709538962692972e-17,8.912267984472113e-19)
sum e = 1.1963612508815462
sum de = -1.620882247865829e-17
Info: cfl dt = 0.0024584208025259157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8081e+04 | 13440 | 1.974e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.49143165367264 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3369395881992832, dt = 0.0024584208025259157 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.79 us (1.4%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 327.71 us (95.0%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.872693452380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9745209338012983e-12, max = 9.992037406477938e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.8988828659170044e-19,6.476068385894134e-19)
sum a = (3.545741026080303e-18,7.559136544249035e-17,-2.604442614494525e-17)
sum e = 1.1963612540359856
sum de = -1.6479873021779667e-17
Info: cfl dt = 0.002480798931853991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8119e+04 | 13440 | 1.973e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.856792608401335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3393980090018091, dt = 0.0006019909981909155 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.61 us (1.3%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 343.11 us (95.3%)
LB move op cnt : 0
LB apply : 2.98 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8679315476190481
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.017731668452755e-12, max = 9.063655027173506e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.976979799522502e-19,5.898837319359524e-19)
sum a = (-2.5606000058612347e-17,-1.4566287458492054e-17,4.595088708122987e-18)
sum e = 1.1963594640265618
sum de = -2.0491421059976034e-17
Info: cfl dt = 0.0024863808070178673 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9347e+04 | 13440 | 1.938e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 11.182097890593527 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 170 [SPH][rank=0]
Info: time since start : 496.50573848100004 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.94 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1866.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1796.66 ms [sph::CartesianRender][rank=0]
---------------- t = 0.34, dt = 0.0024863808070178673 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.78 us (1.6%)
patch tree reduce : 1313.00 ns (0.2%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 597.19 us (96.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865699404761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.966156671300659e-12, max = 9.99221166637518e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.0541392239698198e-19,6.053813753565314e-19)
sum a = (8.52894463030127e-18,-3.0129215637828304e-17,1.1655425737757211e-17)
sum e = 1.1963612274164337
sum de = -1.680513367352532e-17
Info: cfl dt = 0.002477366562436946 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7315e+04 | 13440 | 1.997e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.83173781845861 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3424863808070179, dt = 0.002477366562436946 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 330.70 us (94.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8658482142857142
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.974304714556746e-12, max = 9.998313898829787e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.4374625781406633e-19,6.523235126739375e-19)
sum a = (-4.599880250050123e-19,-2.5299341375275673e-18,-6.710794046049687e-17)
sum e = 1.1963611339963776
sum de = -4.662069341687669e-18
Info: cfl dt = 0.002458468447574238 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8026e+04 | 13440 | 1.976e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.140855024337455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34496374736945484, dt = 0.002458468447574238 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.3%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 572.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 338.23 us (95.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.867708333333333
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9761698183120763e-12, max = 9.999511604902127e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.522720825602804e-19,3.796548298828804e-19)
sum a = (5.458524563392812e-17,-5.0675347421385516e-17,1.7519075171089333e-17)
sum e = 1.1963610193949885
sum de = -1.5612511283791264e-17
Info: cfl dt = 0.002449245470128495 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7814e+04 | 13440 | 1.982e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.65691676894728 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3474222158170291, dt = 0.002449245470128495 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1643.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 336.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8678571428571427
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9967976158156783e-12, max = 9.991348909161657e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.982734849641876e-19,5.312622111711535e-19)
sum a = (-8.488695678113331e-17,-1.832285632936632e-17,-6.505476474471928e-17)
sum e = 1.196360932623275
sum de = -8.998878031629687e-18
Info: cfl dt = 0.002447985260739125 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7518e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.29521948267129 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.34987146128715757, dt = 0.002447985260739125 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1102.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 317.62 us (94.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 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.8581845238095236
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9821223638823107e-12, max = 9.999066612898253e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.683732233774995e-19,2.6944936555876285e-19)
sum a = (3.0090883302411217e-18,-3.2812479117024205e-17,-1.97702014627317e-17)
sum e = 1.1963608836617377
sum de = -1.0733601507606494e-17
Info: cfl dt = 0.0024918669146928906 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7541e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.28717634122688 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3523194465478967, dt = 0.0024918669146928906 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 339.42 us (95.0%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.8575148809523805
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9681824008119323e-12, max = 9.99876465201066e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.5098044616267864e-19,2.788078458851995e-19)
sum a = (1.988489899761251e-17,-3.932897613792855e-17,-4.524143940464336e-17)
sum e = 1.196360926788938
sum de = 9.75781955236954e-19
Info: cfl dt = 0.002478423559296147 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7408e+04 | 13440 | 1.994e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.992540529777166 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3548113134625896, dt = 0.002478423559296147 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (1.3%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.3%)
LB compute : 330.61 us (94.9%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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.8586309523809526
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9944514003892194e-12, max = 9.98584449027702e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.247675919371601e-19,1.2495442931858162e-19)
sum a = (5.347360790683267e-18,4.216556895879279e-18,-6.5680060966210474e-18)
sum e = 1.1963609390887988
sum de = -1.0733601507606494e-17
Info: cfl dt = 0.0024720674467771943 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7788e+04 | 13440 | 1.983e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.00201860380953 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35728973702188577, dt = 0.0024720674467771943 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.3%)
patch tree reduce : 1091.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 321.23 us (95.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8738839285714284
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9858940873569095e-12, max = 9.997184670075152e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.2946538294847765e-19,1.6493385727311882e-19)
sum a = (4.0919768057737545e-18,2.859592222114493e-17,-1.453394455048389e-17)
sum e = 1.19636098864321
sum de = 3.0357660829594124e-18
Info: cfl dt = 0.0024690370917706105 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7581e+04 | 13440 | 1.989e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.74968910292686 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.35976180446866296, dt = 0.00023819553133708204 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 353.87 us (94.9%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8741815476190475
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0805100028942674e-12, max = 9.807119230994316e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.545741026080303e-19,1.4359652212884334e-19)
sum a = (-3.4491914562485214e-17,-5.450858096309395e-17,5.637967808564038e-17)
sum e = 1.1963594569454228
sum de = -1.5178830414797062e-17
Info: cfl dt = 0.002468268144170884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9419e+04 | 13440 | 1.936e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.429126626150916 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 179 [SPH][rank=0]
Info: time since start : 504.96450278000003 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1898.75 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1896.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1844.36 ms [sph::CartesianRender][rank=0]
---------------- t = 0.36000000000000004, dt = 0.002468268144170884 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.55 us (1.6%)
patch tree reduce : 982.00 ns (0.2%)
gen split merge : 701.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 578.35 us (96.2%)
LB move op cnt : 0
LB apply : 3.84 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (68.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.875892857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.978462413578085e-12, max = 9.99861935206895e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.156193867210995e-20,2.9423062146316704e-19)
sum a = (3.9778183193597505e-17,-2.9822556954491626e-17,3.646602983646506e-17)
sum e = 1.1963610152030562
sum de = -1.3227266504323154e-17
Info: cfl dt = 0.0024738791850360342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.2926e+04 | 13440 | 2.136e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.6028843209733 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36246826814417094, dt = 0.0024738791850360342 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 330.60 us (95.1%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8764880952380953
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9924330696727072e-12, max = 9.991489304605053e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1686870231654039e-18,3.57419080627267e-19)
sum a = (-1.9912450363693537e-17,1.2113017991798656e-17,-4.195234534303526e-17)
sum e = 1.1963611063042325
sum de = -6.7220534694101275e-18
Info: cfl dt = 0.0024783500885693344 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7788e+04 | 13440 | 1.983e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.91917145768827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.364942147329207, dt = 0.0024783500885693344 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 307.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877380952380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9454191493790627e-12, max = 9.9801073347901e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.976511044943412e-19,1.534042095109489e-19)
sum a = (-4.693435106177444e-17,-1.556292817933625e-17,6.757990734031972e-17)
sum e = 1.1963611428982743
sum de = -3.0140820395097023e-17
Info: cfl dt = 0.0024877516507985295 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7854e+04 | 13440 | 1.981e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.04432233332335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3674204974177763, dt = 0.0024877516507985295 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.5%)
patch tree reduce : 1132.00 ns (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1432.00 ns (0.4%)
LB compute : 305.64 us (94.7%)
LB move op cnt : 0
LB apply : 2.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.8735863095238097
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9712477364332767e-12, max = 9.99933544099399e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.300877634183241e-19,4.645923973256191e-19)
sum a = (2.5553293097413857e-17,8.471446127175642e-18,-1.0455144485009758e-17)
sum e = 1.1963611458923107
sum de = 1.4094628242311558e-17
Info: cfl dt = 0.0024767783150275837 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8128e+04 | 13440 | 1.973e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.39807393188811 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.36990824906857483, dt = 0.0024767783150275837 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.25 us (1.2%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1553.00 ns (0.5%)
LB compute : 327.42 us (95.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.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.8572172619047618
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9875390465238297e-12, max = 9.988082482396404e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.335876689478578e-19,3.319640141393594e-19)
sum a = (1.6832686790027167e-17,4.473383543173744e-17,-3.314309550999656e-17)
sum e = 1.1963610799270974
sum de = -1.0842021724855044e-17
Info: cfl dt = 0.0024713774707146464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7728e+04 | 13440 | 1.984e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.932139322272775 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3723850273836024, dt = 0.0024713774707146464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 327.16 us (94.9%)
LB move op cnt : 0
LB apply : 2.92 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.8568452380952376
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9634017552974295e-12, max = 9.990417738481065e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.587432640653194e-19,2.2898329662725096e-19)
sum a = (-1.2275930417321264e-17,4.810708094844086e-17,2.5391578557373033e-17)
sum e = 1.1963609914767148
sum de = 2.47198095326695e-17
Info: cfl dt = 0.002476126783251774 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7747e+04 | 13440 | 1.984e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.84707633099765 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37485640485431704, dt = 0.002476126783251774 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1523.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 354.76 us (95.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8566964285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9470698236010316e-12, max = 9.993336697067505e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-9.4632953060927e-20,3.6505560057363927e-19)
sum a = (3.4518268043084464e-17,-1.4642952129326224e-17,-1.1068461851683107e-18)
sum e = 1.1963609041565522
sum de = -8.673617379884035e-18
Info: cfl dt = 0.0024834787082118805 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7123e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.51934595664582 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3773325316375688, dt = 0.0024834787082118805 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.4%)
LB compute : 315.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8654017857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.967178895135197e-12, max = 9.998522154710614e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1954897108203183e-18,3.2533821006824233e-19)
sum a = (-4.137975608274256e-17,7.666467083416871e-19,-4.834066861738872e-18)
sum e = 1.1963608281719866
sum de = -3.0791341698588326e-17
Info: cfl dt = 0.0025227320606522417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6834e+04 | 13440 | 2.011e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.459239976997566 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.37981601034578066, dt = 0.0001839896542193964 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 314.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.867857142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0377289959310443e-12, max = 9.944053245574188e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.575922540414445e-19,3.260494545730515e-19)
sum a = (3.723028077384318e-17,1.8514518006451744e-17,-3.2657951889874086e-17)
sum e = 1.1963595067528716
sum de = -4.7921736023859296e-17
Info: cfl dt = 0.0025222322405353 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8859e+04 | 13440 | 1.952e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.393562890423285 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 188 [SPH][rank=0]
Info: time since start : 513.694513701 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1873.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1869.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1806.12 ms [sph::CartesianRender][rank=0]
---------------- t = 0.38000000000000006, dt = 0.0025222322405353 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.50 us (1.6%)
patch tree reduce : 1312.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.2%)
LB compute : 564.11 us (96.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (77.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8782738095238094
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9815976804182513e-12, max = 9.99443306778898e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.683732233774995e-19,2.3613317559664853e-19)
sum a = (1.5716257521004586e-18,-7.081898968306334e-17,1.1331397714934671e-17)
sum e = 1.196360815974001
sum de = -2.688821387764051e-17
Info: cfl dt = 0.002519669533379816 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7094e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.32855350923671 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3825222322405354, dt = 0.002519669533379816 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.4%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 530.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 316.13 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8784226190476192
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9814033058810973e-12, max = 9.99465102068883e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.2884300247863123e-19,3.284452255366193e-19)
sum a = (1.0148485801673082e-17,-1.2649670687637837e-17,3.1109085961927522e-18)
sum e = 1.1963607916615084
sum de = 9.974659986866641e-18
Info: cfl dt = 0.002515717453237691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7370e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.46849352561598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.38504190177391523, dt = 0.002515717453237691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1092.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 335.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8785714285714286
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9497948363919175e-12, max = 9.997294686567316e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.481029211029913e-19,3.1504388170916206e-19)
sum a = (-3.9621260195483817e-17,-6.708158697989762e-18,-2.1030077518197904e-17)
sum e = 1.1963608031363966
sum de = 9.974659986866641e-18
Info: cfl dt = 0.002517653747618023 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7212e+04 | 13440 | 2.000e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.291145597535056 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3875576192271529, dt = 0.002517653747618023 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.29 us (1.2%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 355.16 us (95.4%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8732142857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.972620251161245e-12, max = 9.998456630042725e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.036874073611696e-19,2.336625367904693e-19)
sum a = (-8.137475654854295e-17,9.151845080828889e-18,2.4892060311469154e-17)
sum e = 1.196360847688281
sum de = 6.505213034913027e-19
Info: cfl dt = 0.0025243275537023095 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7309e+04 | 13440 | 1.997e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.391352740793096 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39007527297477096, dt = 0.0025243275537023095 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1062.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 350.18 us (95.2%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8629464285714286
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9765468017117924e-12, max = 9.990056532364719e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.965000944704663e-19,3.4985742852350625e-19)
sum a = (-1.7584958872587446e-18,-3.664571265873264e-17,3.432900213696261e-17)
sum e = 1.196360910133507
sum de = 2.168404344971009e-17
Info: cfl dt = 0.002532930581207848 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7439e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.59970355071053 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.39259960052847326, dt = 0.002532930581207848 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.3%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 325.91 us (95.2%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8631696428571427
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9963463701110653e-12, max = 9.986156868415643e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-9.666935837995961e-19,4.502552054655182e-19)
sum a = (5.845681151105364e-19,2.576891248413496e-17,3.5419077925385944e-17)
sum e = 1.1963609767239831
sum de = 7.37257477290143e-18
Info: cfl dt = 0.002549113721941957 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7277e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.644701892093785 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.3951325311096811, dt = 0.002549113721941957 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (1.3%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 320.18 us (94.9%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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.8633184523809523
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.974025994170709e-12, max = 9.995169586369857e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.3598343991142557e-19,5.3440666056083615e-19)
sum a = (-3.9856045749913455e-17,4.883539532136547e-17,-1.514127248974832e-17)
sum e = 1.1963610477078097
sum de = -7.589415207398531e-18
Info: cfl dt = 0.0025524262198319985 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8193e+04 | 13440 | 1.971e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.56173559590274 (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 : 4.45 us (1.1%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 391.10 us (95.9%)
LB move op cnt : 0
LB apply : 3.14 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862202380952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.96545398065536e-12, max = 9.98292702926755e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.701466138712208e-19,4.441909102139872e-19)
sum a = (-5.251529952140556e-18,8.78385466082488e-17,1.5788130649911618e-17)
sum e = 1.196360846595587
sum de = -2.710505431213761e-17
Info: cfl dt = 0.0025469566819429053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8671e+04 | 13440 | 1.957e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.64363352135359 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 196 [SPH][rank=0]
Info: time since start : 521.981117468 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1891.50 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1908.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1839.28 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4000000000000001, dt = 0.0025469566819429053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (1.8%)
patch tree reduce : 1322.00 ns (0.2%)
gen split merge : 661.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 531.33 us (95.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8659970238095236
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.002120447694702e-12, max = 9.992972666527845e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.7009973841331181e-19,5.230267484838892e-19)
sum a = (-3.263998360764733e-17,2.1581104839818492e-17,-1.7704747420765836e-17)
sum e = 1.196361127759489
sum de = 1.9081958235744878e-17
Info: cfl dt = 0.0025433241224393217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.2254e+04 | 13440 | 2.159e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.470978146090715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40254695668194296, dt = 0.0025433241224393217 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.2%)
patch tree reduce : 1503.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 : 329.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8710565476190477
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.957332702456163e-12, max = 9.999742243591884e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.1859066269660473e-19,4.3034035933086105e-19)
sum a = (-2.3104815172647593e-17,-6.253920523297313e-17,-4.362698924656913e-17)
sum e = 1.1963611783830015
sum de = 1.8648277366750676e-17
Info: cfl dt = 0.002557064018436724 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8790e+04 | 13440 | 1.954e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.8629429602858 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.40509028080438225, dt = 0.002557064018436724 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.42 us (1.3%)
patch tree reduce : 1022.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 322.40 us (95.2%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
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.872098214285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9690281647864055e-12, max = 9.956015695476353e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.563943685596606e-19,2.850967446645649e-19)
sum a = (-2.792510635134595e-17,2.924757192323536e-17,1.9233249295522076e-17)
sum e = 1.196361252554859
sum de = -2.47198095326695e-17
Info: cfl dt = 0.002557556212967918 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8506e+04 | 13440 | 1.962e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.92193079498496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.407647344822819, dt = 0.002557556212967918 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1152.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 350.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 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.8600446428571433
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9493628154764306e-12, max = 9.977042547810452e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.6650608196796017e-19,4.1476784806767056e-19)
sum a = (-2.2558579392954142e-17,5.140366179431012e-17,-7.287456116980449e-17)
sum e = 1.1963613206997687
sum de = -1.214306433183765e-17
Info: cfl dt = 0.0025772938013571916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9160e+04 | 13440 | 1.943e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.37856910739788 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41020490103578694, dt = 0.0025772938013571916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.3%)
LB compute : 321.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.858407738095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.006311945397933e-12, max = 9.988720421395145e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.4556652376569664e-19,1.0855837178666468e-19)
sum a = (5.2611130359948276e-17,6.526080104758611e-17,1.851930954837888e-17)
sum e = 1.1963614177074233
sum de = 7.806255641895632e-18
Info: cfl dt = 0.0026061872759314594 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9153e+04 | 13440 | 1.944e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.739311723958416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4127821948371441, dt = 0.0026061872759314594 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1131.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 324.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.863318452380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9660523320691443e-12, max = 9.985707715387488e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.5213145618655352e-19,2.7491471806940184e-19)
sum a = (3.5169917745174897e-17,-1.188302397929615e-18,-1.3636728324627759e-17)
sum e = 1.1963615296562475
sum de = -1.3660947373317356e-17
Info: cfl dt = 0.0026435101909231197 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9056e+04 | 13440 | 1.946e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.20697536990093 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4153883821130756, dt = 0.0026435101909231197 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.4%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.4%)
LB compute : 326.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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.863764880952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9714796841719695e-12, max = 9.997026346782286e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.521783316444625e-19,1.9390771236376657e-19)
sum a = (3.34449626514061e-17,-5.600354204436024e-17,-3.2386031885509144e-17)
sum e = 1.1963616523342289
sum de = -2.7755575615628914e-17
Info: cfl dt = 0.0026421217933517926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9399e+04 | 13440 | 1.937e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.140379406008826 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.41803189230399873, dt = 0.0019681076960013644 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.3%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 333.39 us (95.0%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 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.863616071428571
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.773143697189824e-12, max = 9.611115493442165e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.385198372487202e-21,1.0361709417430615e-19)
sum a = (5.140366179431012e-17,3.3732455167034233e-18,-3.5526887618746493e-17)
sum e = 1.196360886486325
sum de = 4.163336342344337e-17
Info: cfl dt = 0.002643638593810653 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9519e+04 | 13440 | 1.933e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.648607161220774 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 204 [SPH][rank=0]
Info: time since start : 530.353942424 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1916.78 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1925.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1848.76 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4200000000000001, dt = 0.002643638593810653 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.83 us (1.7%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1071.00 ns (0.2%)
LB compute : 523.48 us (92.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8623511904761898
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0037448767047345e-12, max = 9.96757791576132e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.3655894492336302e-19,1.167938344739289e-20)
sum a = (6.299919325797813e-17,-5.38952635964206e-17,-4.2048176181577967e-17)
sum e = 1.1963617366915016
sum de = 2.0057740190981832e-17
Info: cfl dt = 0.0026410162946772417 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9253e+04 | 13440 | 1.941e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.03914237021508 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.42264363859381077, dt = 0.0026410162946772417 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 360.11 us (95.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8750744047619048
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0080926131931972e-12, max = 9.986055822914193e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.3181427845413645e-19,-1.0646207219354287e-19)
sum a = (-9.745996279793697e-18,-3.166250905451168e-17,1.576776659672129e-17)
sum e = 1.19636179522793
sum de = -3.144186300207963e-18
Info: cfl dt = 0.0026309147037475037 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7602e+04 | 13440 | 1.988e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.822894041838495 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.425284654888488, dt = 0.0026309147037475037 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 317.55 us (94.8%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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.8776785714285715
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0137170636905128e-12, max = 9.965477413067314e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.58214634511291e-19,1.9166167708542177e-20)
sum a = (5.1235957826860377e-17,5.864847318813906e-17,2.394812655182345e-17)
sum e = 1.1963618217203373
sum de = 2.883977778811442e-17
Info: cfl dt = 0.002621252590367029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9073e+04 | 13440 | 1.946e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.67647577124343 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4279155695922355, dt = 0.002621252590367029 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.4%)
patch tree reduce : 1292.00 ns (0.4%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 324.01 us (95.0%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 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.860565476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.2019247838014876e-12, max = 9.108021321433734e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.2879612702072224e-19,9.118903230079832e-20)
sum a = (2.7934689435200224e-18,7.014817381326438e-18,-5.704809818447579e-17)
sum e = 1.1963618385066455
sum de = -2.0599841277224584e-17
Info: cfl dt = 0.0026206169881162955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9306e+04 | 13440 | 1.939e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.66147869580654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43053682218260253, dt = 0.0026206169881162955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1322.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 316.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.854315476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.120511219817728e-12, max = 9.99075060051759e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.019140168674482e-19,-1.6493385727311882e-19)
sum a = (-2.1077992937469258e-17,-1.8591182677285913e-17,-4.5311216233957275e-17)
sum e = 1.196361852319043
sum de = -1.1275702593849246e-17
Info: cfl dt = 0.0026288109428820785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9489e+04 | 13440 | 1.934e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.77807936796809 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4331574391707188, dt = 0.0026288109428820785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.5%)
patch tree reduce : 922.00 ns (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 319.42 us (95.2%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 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.8531994047619045
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.005088446162742e-12, max = 9.98240980188344e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.426889987060094e-20,-2.6959910124398587e-19)
sum a = (-7.113043990832716e-18,8.203119779256051e-18,-5.534230925841554e-19)
sum e = 1.1963618536376148
sum de = -1.1492543028346347e-17
Info: cfl dt = 0.002637875003721171 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9423e+04 | 13440 | 1.936e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.88396971574876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4357862501136009, dt = 0.002637875003721171 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1131.00 ns (0.3%)
gen split merge : 572.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 333.66 us (95.2%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8528273809523812
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.995111113887211e-12, max = 9.998973134693438e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.072341883486123e-19,-2.1277440870186276e-19)
sum a = (1.559167743089906e-17,-3.334913181286339e-17,3.136064191310214e-18)
sum e = 1.1963618210431903
sum de = -1.5395670849294163e-17
Info: cfl dt = 0.002613013656513562 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8664e+04 | 13440 | 1.957e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.516365193458974 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.43842412511732204, dt = 0.0015758748826780744 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.4%)
LB compute : 315.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.853199404761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.488680722514527e-12, max = 9.47027311127741e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.384729617908113e-19,-1.998222719300745e-19)
sum a = (8.030624269879172e-18,1.7326215608522128e-17,1.6756022119192998e-17)
sum e = 1.1963605835314577
sum de = 3.469446951953614e-18
Info: cfl dt = 0.0026187808488063397 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9714e+04 | 13440 | 1.928e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.42704882327051 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 212 [SPH][rank=0]
Info: time since start : 538.9044852090001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1906.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1920.81 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1837.79 ms [sph::CartesianRender][rank=0]
---------------- t = 0.4400000000000001, dt = 0.0026187808488063397 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.96 us (1.7%)
patch tree reduce : 1493.00 ns (0.3%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 549.95 us (95.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8534226190476193
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.005298417610478e-12, max = 9.986842765351095e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.689956038473459e-19,-1.4262324017489394e-19)
sum a = (1.3224655718894102e-17,4.534715279841079e-17,5.158094884561413e-17)
sum e = 1.1963616438081626
sum de = -4.228388472693467e-18
Info: cfl dt = 0.0026145385497143864 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8234e+04 | 13440 | 1.970e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.86361746244647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44261878084880646, dt = 0.0026145385497143864 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 392.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
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.8720982142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.965343763634513e-12, max = 9.980018702028263e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.2941850749056866e-19,4.132704912154407e-20)
sum a = (-1.512210632203978e-17,-3.971229949209939e-17,-2.9578188316207716e-17)
sum e = 1.1963614746744191
sum de = 2.168404344971009e-18
Info: cfl dt = 0.0026092781372655687 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7855e+04 | 13440 | 1.981e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.520095546142905 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.44523331939852084, dt = 0.0026092781372655687 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1082.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.3%)
LB compute : 347.75 us (94.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877157738095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9752285736713798e-12, max = 9.968571889976497e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.618551664145516e-19,-1.47190178574195e-19)
sum a = (-1.7115387763728166e-17,-7.628134747999786e-18,1.464774367125336e-17)
sum e = 1.196361274118059
sum de = 2.3093506273941244e-17
Info: cfl dt = 0.002615205130984691 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7475e+04 | 13440 | 1.992e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.159002086434604 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4478425975357864, dt = 0.002615205130984691 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 336.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 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.8762648809523812
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9286715361552388e-12, max = 9.994137671975833e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-3.953022089886824e-20,-5.345563962460592e-20)
sum a = (-1.2228014998049908e-17,-1.6444571893929187e-17,-1.2498737116933068e-17)
sum e = 1.196361065220343
sum de = 1.951563910473908e-18
Info: cfl dt = 0.0026182957833103186 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7157e+04 | 13440 | 2.001e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.0438980457751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4504578026667711, dt = 0.0026182957833103186 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.3%)
patch tree reduce : 1402.00 ns (0.4%)
gen split merge : 570.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 340.01 us (95.3%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.8651785714285718
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9724795862734586e-12, max = 9.987697410435929e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.35454810357397e-19,-1.1634462741825993e-19)
sum a = (-3.844733242333561e-17,-3.359829199307444e-17,1.9133824800534013e-17)
sum e = 1.1963608496451446
sum de = -2.699663409488906e-17
Info: cfl dt = 0.0025961739576276658 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7374e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.25134431735381 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4530760984500814, dt = 0.0025961739576276658 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (1.1%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 350.89 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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.864136904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9828698155399702e-12, max = 9.980623786237493e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.019140168674482e-19,-2.4032577478289214e-20)
sum a = (5.385693126100352e-18,1.3607979073064945e-18,1.3919429298328756e-18)
sum e = 1.19636063582384
sum de = -5.421010862427522e-19
Info: cfl dt = 0.0025923738827887226 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7449e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.90425931433182 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4556722724077091, dt = 0.0025923738827887226 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.44 us (1.3%)
patch tree reduce : 1092.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 316.97 us (95.0%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
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.8645089285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.953067672431586e-12, max = 9.992128509229577e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.797296977254919e-19,-4.881383338269336e-20)
sum a = (-3.584073361497387e-18,4.695711088592833e-18,-1.0504257789762897e-17)
sum e = 1.1963604758944066
sum de = 8.673617379884035e-19
Info: cfl dt = 0.002588547353303794 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7115e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.603406782584216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4582646462904978, dt = 0.0017353537095023408 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 314.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.863913690476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.991671306838955e-12, max = 9.880772033410524e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.7728705130401514e-19,-8.055779864996633e-20)
sum a = (-3.422119244360206e-17,5.500690132351605e-18,5.013749684006455e-17)
sum e = 1.1963600404155301
sum de = -1.3010426069826053e-18
Info: cfl dt = 0.0025780204123877423 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6078e+04 | 13440 | 2.034e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.714958844190804 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 220 [SPH][rank=0]
Info: time since start : 547.321693257 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1902.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1905.86 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1831.72 ms [sph::CartesianRender][rank=0]
---------------- t = 0.46000000000000013, dt = 0.0025780204123877423 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.87 us (1.5%)
patch tree reduce : 1232.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 618.36 us (96.2%)
LB move op cnt : 0
LB apply : 3.98 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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.8638392857142858
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.960367558433336e-12, max = 9.963866284087236e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.953959599045004e-19,9.347250150044886e-20)
sum a = (-2.1130699898667752e-17,-5.999010492773702e-18,4.0656233251745096e-17)
sum e = 1.1963603228150725
sum de = 3.122502256758253e-17
Info: cfl dt = 0.0025832222007188513 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5844e+04 | 13440 | 2.041e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.46832444087086 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4625780204123879, dt = 0.0025832222007188513 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (1.3%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 320.27 us (95.1%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9672639453994768e-12, max = 9.982546037533776e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.9707559948240377e-19,1.939451462850723e-19)
sum a = (-1.954949106271302e-18,-1.6789562912682946e-17,-3.801848942085698e-17)
sum e = 1.1963602951461199
sum de = 2.190088388420719e-17
Info: cfl dt = 0.0025897780598858004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6184e+04 | 13440 | 2.031e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.79530793583982 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4651612426131067, dt = 0.0025897780598858004 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (1.3%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 335.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8716517857142854
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.958500654373059e-12, max = 9.997683182797227e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.1504388170916206e-19,9.732819539494075e-22)
sum a = (-3.4537434210793e-17,2.7062628804461555e-17,-1.0927111364832609e-17)
sum e = 1.1963603168406056
sum de = -5.637851296924623e-18
Info: cfl dt = 0.0025762086731901503 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6465e+04 | 13440 | 2.022e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.10615446173718 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4677510206729925, dt = 0.0025762086731901503 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.93 us (1.5%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.4%)
LB compute : 318.33 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8712053571428575
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9503847831238922e-12, max = 9.993749030489587e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4374625781406634e-20,-4.192599186243601e-21)
sum a = (-2.385229571328074e-17,7.574469478415869e-17,4.411692440861874e-17)
sum e = 1.1963603649149195
sum de = 9.75781955236954e-18
Info: cfl dt = 0.002581014433250932 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6289e+04 | 13440 | 2.027e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.743056910501515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47032722934618265, dt = 0.002581014433250932 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.5%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 322.84 us (94.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8734374999999999
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9581938597763874e-12, max = 9.982268631133626e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.390015913448398e-19,1.8357595008338054e-19)
sum a = (1.4949610812662899e-18,8.126455108421884e-18,5.434806430853491e-18)
sum e = 1.1963604439855828
sum de = 1.973247953923618e-17
Info: cfl dt = 0.0025819891601565823 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6113e+04 | 13440 | 2.033e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.70671210157169 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4729082437794336, dt = 0.0025819891601565823 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1233.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 323.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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.8667410714285717
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9821197328254185e-12, max = 9.973484960991597e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.6415718646230135e-19,1.4767681955116972e-19)
sum a = (4.204098886868727e-17,-4.415885040048118e-17,-1.2611338352220752e-17)
sum e = 1.1963605392308878
sum de = -5.421010862427522e-18
Info: cfl dt = 0.002558892125537261 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6144e+04 | 13440 | 2.032e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.7457991383929 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.47549023293959014, dt = 0.002558892125537261 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.4%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 344.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8651041666666666
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9661282437867633e-12, max = 9.999903209697953e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.976511044943412e-19,9.601800814923962e-20)
sum a = (2.6760761663052014e-17,6.4398323500701715e-18,-2.1024088090788983e-17)
sum e = 1.1963606331881977
sum de = -4.96564594998361e-17
Info: cfl dt = 0.0025612950272837862 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5943e+04 | 13440 | 2.038e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.198164295139705 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4780491250651274, dt = 0.0019508749348727261 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1453.00 ns (0.4%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 315.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 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.8642113095238098
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.950804173056084e-12, max = 9.9973767555143e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.779094317738616e-19,3.953022089886824e-20)
sum a = (-1.0110153466255998e-17,1.9932814416883866e-18,-3.3388662033762256e-17)
sum e = 1.1963604061454243
sum de = 1.7564075194265172e-17
Info: cfl dt = 0.0025601020173028916 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7270e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.15252803898306 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 228 [SPH][rank=0]
Info: time since start : 555.726330457 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1888.68 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1876.03 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1819.23 ms [sph::CartesianRender][rank=0]
---------------- t = 0.48000000000000015, dt = 0.0025601020173028916 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.71 us (1.5%)
patch tree reduce : 1242.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.2%)
LB compute : 619.72 us (96.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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.8681547619047618
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.980723966176484e-12, max = 9.984853824195907e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.1082784479396395e-19,-6.165366839056438e-20)
sum a = (-3.608989379518492e-17,-1.556292817933625e-17,2.87468557918497e-17)
sum e = 1.1963608065145788
sum de = 6.505213034913027e-19
Info: cfl dt = 0.002559017659657811 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4761e+04 | 13440 | 2.075e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.409446715087654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48256010201730304, dt = 0.002559017659657811 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1363.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 348.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 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.877157738095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9476245867785825e-12, max = 9.996874497549093e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1859066269660473e-19,9.433348169048103e-20)
sum a = (-3.78531812243708e-17,1.1806359308461982e-17,-4.444873868707288e-17)
sum e = 1.1963609351070235
sum de = 1.5829351718288365e-17
Info: cfl dt = 0.00255615152358638 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5607e+04 | 13440 | 2.049e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.97073161300783 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48511911967696086, dt = 0.00255615152358638 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1433.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 : 339.71 us (94.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.8779761904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.951130943144898e-12, max = 9.97268130537015e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.575922540414445e-19,-1.1290070665813125e-19)
sum a = (-3.5505325680074386e-17,1.3952970091818706e-17,-3.822572360920559e-17)
sum e = 1.1963610407832537
sum de = 2.168404344971009e-17
Info: cfl dt = 0.002555300918032182 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7168e+04 | 13440 | 2.001e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.988535426841935 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.48767527120054727, dt = 0.002555300918032182 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1402.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1442.00 ns (0.4%)
LB compute : 326.93 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.38 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8782738095238096
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9669919828830815e-12, max = 9.997574107923634e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.522252071023715e-19,-2.0236777857886525e-19)
sum a = (2.1595479465599898e-17,6.025843127565661e-17,8.26121722512257e-18)
sum e = 1.1963611324121677
sum de = 2.2768245622195593e-17
Info: cfl dt = 0.002575248199966584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7659e+04 | 13440 | 1.986e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.309498425634054 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49023057211857946, dt = 0.002575248199966584 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (1.4%)
patch tree reduce : 1342.00 ns (0.4%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 314.68 us (94.8%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (68.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8789434523809525
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9495751368449997e-12, max = 9.9913094564461e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.31238773442199e-20,-1.1690613623784612e-19)
sum a = (3.6454050981647224e-17,4.2855550996300307e-17,-9.921486502875036e-18)
sum e = 1.1963612199898053
sum de = -9.324138683375338e-18
Info: cfl dt = 0.0025860236635264463 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7790e+04 | 13440 | 1.983e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.761296254360516 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49280582031854603, dt = 0.0025860236635264463 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 323.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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.8784970238095235
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9714496803817823e-12, max = 9.929018141271105e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.180620331425762e-19,-1.7391799838649797e-19)
sum a = (1.9329080134064785e-17,-4.400552105881284e-17,-1.4625582789840356e-17)
sum e = 1.1963612735494422
sum de = 1.951563910473908e-17
Info: cfl dt = 0.0025956187340672654 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7504e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.75896684209141 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.4953918439820725, dt = 0.0025956187340672654 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1443.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 : 343.56 us (95.0%)
LB move op cnt : 0
LB apply : 2.99 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8600446428571427
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9816472053170016e-12, max = 9.999574392749092e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.5035806569283217e-19,-2.1397229418364666e-19)
sum a = (1.554855355355484e-17,3.794901206291351e-17,-3.115939715216245e-17)
sum e = 1.1963612970469022
sum de = -1.6046192152785466e-17
Info: cfl dt = 0.002592544318001509 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8501e+04 | 13440 | 1.962e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.62563396650399 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.49798746271613975, dt = 0.0020125372838603606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1633.00 ns (0.5%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 320.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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.855654761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.946798992936305e-12, max = 9.988345254700252e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4853779974120188e-19,-3.0321476257654616e-19)
sum a = (-6.082862476498573e-18,6.133173666733497e-19,4.309632597813887e-17)
sum e = 1.196360812026938
sum de = 1.6696713456276768e-17
Info: cfl dt = 0.0025890845741872695 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8445e+04 | 13440 | 1.964e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.89678901875598 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 236 [SPH][rank=0]
Info: time since start : 564.0690895710001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.80 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1875.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1805.10 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0025890845741872695 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.37 us (1.7%)
patch tree reduce : 1513.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 535.32 us (96.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 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.8695684523809528
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.991225968833698e-12, max = 9.961091966703287e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.031119023492321e-19,-1.1424832782513814e-19)
sum a = (1.602291620434126e-17,-4.0632275542109415e-17,8.836801199119728e-18)
sum e = 1.196361255311753
sum de = 5.204170427930421e-18
Info: cfl dt = 0.002594127616300522 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7531e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.83282639076598 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5025890845741874, dt = 0.002594127616300522 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1523.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 330.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 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.8770089285714284
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0057884400012928e-12, max = 9.938345521813208e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.822660950627866e-20,-1.3693328413642048e-19)
sum a = (5.313819997193319e-17,3.38091198378684e-17,1.2337022576892244e-17)
sum e = 1.1963612296433555
sum de = -3.686287386450715e-17
Info: cfl dt = 0.002606011697104389 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7957e+04 | 13440 | 1.978e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.22008876813503 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5051832121904879, dt = 0.002606011697104389 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 355.41 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.876934523809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9617031782011258e-12, max = 9.947902496805303e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-5.917554280012397e-19,-1.0084698399768091e-19)
sum a = (-3.4566183462355815e-17,-3.0512538991999144e-17,-1.5956433560102256e-17)
sum e = 1.196361209544157
sum de = -1.5829351718288365e-17
Info: cfl dt = 0.0025825991771516264 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7491e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.11143041411332 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5077892238875923, dt = 0.0025825991771516264 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1342.00 ns (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 333.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 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.8773065476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.958883752872688e-12, max = 9.975551106951263e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-3.1384599622737816e-19,-1.808807077493668e-19)
sum a = (3.3514440009349564e-17,4.216556895879279e-17,3.3361110667681225e-17)
sum e = 1.1963611706132693
sum de = -1.3660947373317356e-17
Info: cfl dt = 0.0025765533980509478 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7492e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.68858328372694 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5103718230647439, dt = 0.0025765533980509478 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1393.00 ns (0.4%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 370.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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.8774553571428576
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9998813013272926e-12, max = 9.984419107081596e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.9405744804898953e-19,-3.039634410026611e-20)
sum a = (-6.6075363175199154e-18,-2.315273059191895e-17,-5.170193527927431e-17)
sum e = 1.1963611594354109
sum de = 1.5178830414797062e-17
Info: cfl dt = 0.0025758529104395796 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7248e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.410849052827125 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5129483764627949, dt = 0.0025758529104395796 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 318.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8775297619047624
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9709838828675547e-12, max = 9.98958021014097e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0062238046984643e-19,-2.7570083041682255e-19)
sum a = (-6.668388899994537e-17,-1.364631140848203e-17,-6.450253953761691e-17)
sum e = 1.1963611634110682
sum de = 4.7704895589362195e-18
Info: cfl dt = 0.0025916555216239684 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7878e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.8332819730855 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5155242293732345, dt = 0.0025916555216239684 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (1.3%)
patch tree reduce : 1203.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 353.28 us (95.2%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8735119047619047
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.964520058610573e-12, max = 9.991721713099046e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-20,-4.613730800933248e-19)
sum a = (-4.099164118664458e-17,2.4226035983597312e-17,-5.2838728601487216e-17)
sum e = 1.19636118564662
sum de = -3.5561831257524545e-17
Info: cfl dt = 0.002596633526303461 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7971e+04 | 13440 | 1.977e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.18522953470585 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5181158848948585, dt = 0.0018841151051416372 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1372.00 ns (0.4%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1423.00 ns (0.4%)
LB compute : 363.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.024696033084746e-12, max = 9.897521957059996e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,0,-5.450004602903624e-19)
sum a = (-5.572563261258638e-18,4.38521917171445e-17,7.818838116699781e-17)
sum e = 1.1963607006839607
sum de = -5.7462715141731735e-18
Info: cfl dt = 0.002609274723797898 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7884e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.25940134792939 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 244 [SPH][rank=0]
Info: time since start : 572.5391807990001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.24 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1854.43 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1801.34 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5200000000000001, dt = 0.002609274723797898 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1213.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.2%)
LB compute : 544.30 us (95.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.6%)
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.8671874999999998
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9574702392172838e-12, max = 9.999575279479638e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4853779974120188e-19,-2.1195086243313634e-19)
sum a = (-1.0493476820426841e-18,-1.3186323383477017e-17,-2.827009737009971e-17)
sum e = 1.1963612033765683
sum de = 3.2526065174565133e-18
Info: cfl dt = 0.002607076435229539 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8308e+04 | 13440 | 1.968e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.74099265800283 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.522609274723798, dt = 0.002607076435229539 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (1.2%)
patch tree reduce : 1042.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 337.48 us (95.5%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8767857142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9748661052368742e-12, max = 9.992977583096081e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.0541392239698198e-19,-4.2929220953430017e-19)
sum a = (-3.865816026812957e-17,-2.2386083883577264e-17,2.163620757198055e-17)
sum e = 1.1963612087328683
sum de = 2.927345865710862e-18
Info: cfl dt = 0.0025901422623598597 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8330e+04 | 13440 | 1.967e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.716404032180975 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5252163511590275, dt = 0.0025901422623598597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 340.13 us (95.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8767113095238095
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9525103028047145e-12, max = 9.998427112498476e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4374625781406634e-20,-3.0650894765145187e-19)
sum a = (-5.740267228708382e-17,1.6252910216843767e-17,6.730918522143656e-17)
sum e = 1.19636119860206
sum de = -1.8214596497756474e-17
Info: cfl dt = 0.002570475200689618 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7881e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.09530884866084 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5278064934213874, dt = 0.002570475200689618 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1242.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 341.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 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.8700892857142855
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.977799885057724e-12, max = 9.999942455242149e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.0124476093969286e-19,-6.8354340304293e-20)
sum a = (-3.104919168783833e-17,2.851925755031076e-17,2.873008539510472e-17)
sum e = 1.1963611937125889
sum de = 5.854691731421724e-18
Info: cfl dt = 0.002566555927027523 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8058e+04 | 13440 | 1.975e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.85958014176081 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5303769686220771, dt = 0.002566555927027523 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1192.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 321.31 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.20 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.871577380952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9734122909785803e-12, max = 9.995030308080384e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.4916018021104833e-19,-4.814002279918992e-20)
sum a = (9.583083854271088e-19,-8.27978445009022e-18,4.35623034305528e-17)
sum e = 1.1963612145226286
sum de = 1.3227266504323154e-17
Info: cfl dt = 0.0026138381265344355 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8568e+04 | 13440 | 1.960e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.138620140503036 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5329435245491045, dt = 0.0026138381265344355 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1393.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 315.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8776041666666665
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9800658988114207e-12, max = 9.99612136499204e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.293716320326597e-19,9.201257856952475e-20)
sum a = (-2.2213588374200383e-17,2.9899221625325796e-17,-1.6521236564763357e-17)
sum e = 1.1963612946049407
sum de = 2.710505431213761e-18
Info: cfl dt = 0.002609629966421731 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8539e+04 | 13440 | 1.961e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.986721625146345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.535557362675639, dt = 0.002609629966421731 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (1.3%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 329.33 us (95.3%)
LB move op cnt : 0
LB apply : 2.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8744791666666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9572842316486963e-12, max = 9.991932983824501e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.5395172213818386e-19,-3.556222524045912e-20)
sum a = (4.6008385584355497e-17,1.3492982066813693e-17,-3.745787901538212e-17)
sum e = 1.1963613532118207
sum de = 2.1467203015212988e-17
Info: cfl dt = 0.002589421517176062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8367e+04 | 13440 | 1.966e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.78892259149434 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5381669926420608, dt = 0.0018330073579393424 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.76 us (1.4%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 321.03 us (94.8%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8642857142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0706216972327764e-12, max = 9.772205522209123e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.216556895879279e-19,-1.3019517830138611e-19)
sum a = (-2.1284029240336087e-17,-3.3732455167034233e-18,1.0510247217171817e-17)
sum e = 1.1963608319738663
sum de = -2.5370330836160804e-17
Info: cfl dt = 0.0025947883802044003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8355e+04 | 13440 | 1.966e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.561218192575105 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 252 [SPH][rank=0]
Info: time since start : 580.787011792 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1860.82 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1794.91 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0025947883802044003 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.73 us (1.7%)
patch tree reduce : 1413.00 ns (0.3%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 533.78 us (95.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8625
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9692912179138485e-12, max = 9.999465479354061e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.1145022526381037e-19,-5.89209921352449e-20)
sum a = (-3.2371657259727735e-17,5.519856300060147e-18,-5.3186115391204544e-18)
sum e = 1.1963614418755601
sum de = -4.336808689942018e-18
Info: cfl dt = 0.0025814591957240137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8210e+04 | 13440 | 1.970e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.40794794123834 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5425947883802046, dt = 0.0025814591957240137 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1132.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 334.37 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8718005952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9851923890855713e-12, max = 9.995626360494548e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-19,-8.460066215098696e-20)
sum a = (-1.0972631013140397e-17,4.5845473158832885e-17,2.7947866175499846e-17)
sum e = 1.196361509003242
sum de = 1.8431436932253575e-18
Info: cfl dt = 0.0025806925530441308 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7801e+04 | 13440 | 1.982e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.88196202001849 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5451762475759286, dt = 0.0025806925530441308 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.4%)
LB compute : 319.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8777529761904765
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9590202866096334e-12, max = 9.954156236209176e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.20410928648235e-19,1.7593943013700826e-20)
sum a = (-5.057951658284281e-17,3.2812479117024205e-17,4.439663066861528e-19)
sum e = 1.1963615598671082
sum de = 1.723881454251952e-17
Info: cfl dt = 0.0025511458198522407 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8078e+04 | 13440 | 1.974e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.05961498950444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5477569401289728, dt = 0.0025511458198522407 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.4%)
patch tree reduce : 1222.00 ns (0.3%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 341.77 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.877232142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9939105810003018e-12, max = 9.96648834021972e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.9290643802511465e-19,-9.88255522471706e-21)
sum a = (-2.129361232419036e-17,-1.76328742918588e-18,-3.768188360047571e-17)
sum e = 1.1963615605046363
sum de = 2.8189256484623115e-18
Info: cfl dt = 0.0025515046930547664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8701e+04 | 13440 | 1.956e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.946160583792846 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5503080859488251, dt = 0.0025515046930547664 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 334.05 us (95.2%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 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.8776041666666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9520375881672618e-12, max = 9.967717044297009e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.762297921959581e-19,-1.6253808630955103e-19)
sum a = (-4.454217375465202e-17,-2.1772766516903912e-17,-2.3097627859756892e-17)
sum e = 1.1963615665070595
sum de = 2.0166160408230382e-17
Info: cfl dt = 0.002583135312416881 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7098e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.85723015628871 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5528595906418798, dt = 0.002583135312416881 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (1.2%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 347.27 us (95.5%)
LB move op cnt : 0
LB apply : 2.90 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.8775297619047622
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9629836498837442e-12, max = 9.99319982908999e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.599880250050123e-19,-1.9712702959606076e-19)
sum a = (2.2328585380451637e-17,-1.0809718587617788e-17,2.4913622250141262e-17)
sum e = 1.19636158604558
sum de = 3.3068166260807885e-18
Info: cfl dt = 0.0025973501770130483 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8268e+04 | 13440 | 1.969e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.23518230208885 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5554427259542967, dt = 0.0025973501770130483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (1.3%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 331.91 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.8753720238095237
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9936033627025775e-12, max = 9.99962686724721e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-20,-6.962709362868838e-20)
sum a = (-2.077612579605972e-17,-3.572573660872262e-17,5.279800049510656e-17)
sum e = 1.1963615776386676
sum de = 2.2876665839444144e-17
Info: cfl dt = 0.0025888023049892004 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7970e+04 | 13440 | 1.977e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.28802042130405 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5580400761313097, dt = 0.001959923868690483 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1373.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 319.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8575892857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.95132023354212e-12, max = 9.967329461857115e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.779094317738616e-19,7.610316201458251e-20)
sum a = (1.6597901235597526e-17,-1.0426395233446945e-17,-4.9161220172410686e-18)
sum e = 1.1963610268412386
sum de = -1.1058862159352145e-17
Info: cfl dt = 0.0025894125304971732 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8280e+04 | 13440 | 1.968e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.84567687969825 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 260 [SPH][rank=0]
Info: time since start : 589.055433775 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.88 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1797.08 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0025894125304971732 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.70 us (1.7%)
patch tree reduce : 1142.00 ns (0.2%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 544.62 us (96.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8560267857142858
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.951410979565645e-12, max = 9.998280321593483e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.5332934166833742e-19,5.353050746721741e-21)
sum a = (-2.7695112338843445e-18,5.3665269583918095e-18,6.30471086772495e-17)
sum e = 1.1963615184875396
sum de = 5.9631119486702744e-18
Info: cfl dt = 0.0025847900064946156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7688e+04 | 13440 | 1.986e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.948100460270915 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5625894125304973, dt = 0.0025847900064946156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1153.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 339.89 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.857738095238095
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.970373728244661e-12, max = 9.994411205908118e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,4.31238773442199e-19,2.597914138618803e-19)
sum a = (2.805926952530575e-17,-1.0733053916783619e-18,-1.3502565150667964e-17)
sum e = 1.196361485344605
sum de = 2.6346112791397758e-17
Info: cfl dt = 0.0025814436929366144 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8183e+04 | 13440 | 1.971e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.206831933361265 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5651742025369919, dt = 0.0025814436929366144 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (1.4%)
patch tree reduce : 972.00 ns (0.3%)
gen split merge : 491.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 310.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8741071428571432
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9885136661419923e-12, max = 9.978208598636966e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.4916018021104833e-19,1.289598588982965e-19)
sum a = (7.240019851901808e-17,1.24963413459695e-17,-4.178224560462195e-18)
sum e = 1.196361447584318
sum de = 5.204170427930421e-18
Info: cfl dt = 0.0025766918556335717 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7863e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.92427593308018 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5677556462299286, dt = 0.0025766918556335717 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.4%)
LB compute : 336.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8760416666666666
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.00537792405982e-12, max = 9.98998602466336e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.174865281306388e-19,1.2472982579074715e-19)
sum a = (1.351693977644937e-17,5.703851510062152e-17,-4.0589151664765194e-17)
sum e = 1.1963614000018747
sum de = 1.474514954580286e-17
Info: cfl dt = 0.002567301303990215 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7901e+04 | 13440 | 1.979e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.8642882805416 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5703323380855622, dt = 0.002567301303990215 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.4%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 322.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8770833333333337
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9516693249014588e-12, max = 9.990959248232202e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-20,-1.3625947355291705e-20)
sum a = (-1.0589307658969553e-17,-3.2199161750350857e-17,-1.2204057288414231e-17)
sum e = 1.1963613378593194
sum de = -2.200930410145574e-17
Info: cfl dt = 0.002555677593427236 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7981e+04 | 13440 | 1.977e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.7483722366903 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5728996393895524, dt = 0.002555677593427236 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (1.3%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 324.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8776041666666672
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9932555171293124e-12, max = 9.993647395385707e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.162417671909459e-19,-1.4150022253572153e-20)
sum a = (2.5814881339498414e-17,-8.7704383434289e-17,-2.393854346796918e-17)
sum e = 1.196361264032836
sum de = 9.75781955236954e-18
Info: cfl dt = 0.002545966139875818 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7892e+04 | 13440 | 1.980e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.47601312889751 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5754553169829796, dt = 0.002545966139875818 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1293.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 321.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.877604166666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9567979527790566e-12, max = 9.991092725388327e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-19,-8.894299702245354e-20)
sum a = (-4.647795669321478e-17,9.583083854271088e-18,6.730678945047299e-17)
sum e = 1.196361186073089
sum de = 1.0408340855860843e-17
Info: cfl dt = 0.002564430881414139 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6029e+04 | 13440 | 2.035e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.028828780062014 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5780012831228554, dt = 0.0019987168771448127 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1403.00 ns (0.4%)
gen split merge : 541.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 343.30 us (94.9%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
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.8683779761904764
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9585801071180988e-12, max = 9.98460048534019e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.583083854271089e-21,1.5520103773362474e-19)
sum a = (3.0771282256064464e-17,-2.2156089871074756e-17,1.6597901235597526e-17)
sum e = 1.19636081078969
sum de = -1.7564075194265172e-17
Info: cfl dt = 0.002645648431567163 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7816e+04 | 13440 | 1.982e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.306681186020775 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 268 [SPH][rank=0]
Info: time since start : 597.48398236 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.36 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1857.22 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1796.93 ms [sph::CartesianRender][rank=0]
---------------- t = 0.5800000000000002, dt = 0.002645648431567163 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.50 us (1.8%)
patch tree reduce : 1743.00 ns (0.3%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1382.00 ns (0.2%)
LB compute : 552.07 us (95.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 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.8645089285714287
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0105595713790177e-12, max = 9.98179479988035e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-19,1.482383283707559e-19)
sum a = (3.2309367214674975e-17,2.4072706641928973e-17,-5.8265149833968216e-18)
sum e = 1.1963611330840243
sum de = 4.2825985813177425e-18
Info: cfl dt = 0.002655709475773559 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7666e+04 | 13440 | 1.986e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.95177683487679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5826456484315673, dt = 0.002655709475773559 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.5%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 316.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.864732142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.976448764254334e-12, max = 9.99103633104346e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.0124476093969286e-19,1.0840863610144169e-19)
sum a = (2.78101093450947e-17,2.913257491698411e-17,6.861008885465385e-17)
sum e = 1.1963610881912503
sum de = 3.577867169202165e-18
Info: cfl dt = 0.002667695087782342 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7921e+04 | 13440 | 1.979e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.31557590081741 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5853013579073408, dt = 0.002667695087782342 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.5%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 313.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8756696428571429
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9995268212054845e-12, max = 9.995849202017781e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,6.803989536532473e-19,3.9245723096944567e-19)
sum a = (1.8495351838743203e-18,-4.2932215667134476e-17,-4.307596192494854e-18)
sum e = 1.1963610735880634
sum de = -6.071532165918825e-18
Info: cfl dt = 0.0026499194621518287 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7377e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.14489505903028 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5879690529951231, dt = 0.0026499194621518287 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 318.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.8720982142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9815907812873218e-12, max = 9.995852140695305e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,5.845681151105364e-19,2.828507093862201e-19)
sum a = (-1.7489128034044737e-17,2.9132574916984108e-18,-5.063581720048665e-17)
sum e = 1.1963610704954126
sum de = -3.3285006695304986e-17
Info: cfl dt = 0.0026343756399501606 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6936e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.51124034191553 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.590618972457275, dt = 0.0026343756399501606 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1092.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 333.39 us (94.8%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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.8710565476190473
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9486006600384034e-12, max = 9.996514454126671e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.874925156281327e-20,8.175568413175023e-20)
sum a = (3.173917372534585e-17,3.150917971284334e-17,-2.2548996309099872e-17)
sum e = 1.196361090620325
sum de = 4.662069341687669e-18
Info: cfl dt = 0.0026834192057788716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7102e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.34943200726353 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5932533480972252, dt = 0.0026834192057788716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1252.00 ns (0.4%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 330.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8726190476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.997639148453982e-12, max = 9.999978296893146e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,8.62477546884398e-20,6.258951642320804e-20)
sum a = (-2.5998906496637464e-17,-1.433629344598955e-17,1.0229343071693495e-17)
sum e = 1.1963611615160252
sum de = 3.3393426912553537e-17
Info: cfl dt = 0.0026739670567985266 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6963e+04 | 13440 | 2.007e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.131092328404186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.595936767303004, dt = 0.0026739670567985266 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.71 us (1.4%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 321.36 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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.877752976190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9705072743770323e-12, max = 9.999199509824658e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.9290643802511465e-19,1.3086898888488954e-19)
sum a = (3.823650457854164e-18,-4.400552105881284e-17,1.0763001053828217e-18)
sum e = 1.1963612070797232
sum de = 1.463672932855431e-17
Info: cfl dt = 0.0026675563417559995 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7129e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.08035241935346 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.5986107343598026, dt = 0.00138926564019759 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 317.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8758184523809522
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0213550759684566e-12, max = 9.9590376605128e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.162417671909459e-19,1.242806187350782e-19)
sum a = (-5.004765542893076e-17,4.975537137137549e-17,-3.6649306315177996e-17)
sum e = 1.1963606336735448
sum de = -5.421010862427522e-20
Info: cfl dt = 0.002676943489960706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8435e+04 | 13440 | 1.964e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.46639209210914 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 276 [SPH][rank=0]
Info: time since start : 605.767871968 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1871.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1864.73 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1801.72 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6000000000000002, dt = 0.002676943489960706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.75 us (1.8%)
patch tree reduce : 1233.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 524.89 us (95.8%)
LB move op cnt : 0
LB apply : 4.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (77.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8638392857142858
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9769948694422563e-12, max = 9.998611829608561e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,3.162417671909459e-19,-5.6899560384734586e-21)
sum a = (2.803531181567007e-17,-4.431217974214951e-17,7.94078285874538e-18)
sum e = 1.196361254859088
sum de = 1.3173056395698879e-17
Info: cfl dt = 0.0026686266540223973 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7134e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.13749277579475 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6026769434899609, dt = 0.0026686266540223973 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1423.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 331.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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.8642113095238095
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.946884928299662e-12, max = 9.99973074898827e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.9166167708542177e-19,8.190541981697322e-20)
sum a = (5.305913953013545e-17,-9.77474553135651e-18,-2.071143998004339e-18)
sum e = 1.1963612978309293
sum de = 1.4582519219930035e-17
Info: cfl dt = 0.0026598359670805464 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6829e+04 | 13440 | 2.011e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.7703143196306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6053455701439833, dt = 0.0026598359670805464 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 333.50 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.29 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.869940476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9573058610036483e-12, max = 9.996050961180245e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.5332934166833742e-19,5.779797449607251e-20)
sum a = (-1.1309236833521668e-17,-1.671289824184878e-17,6.593161691738509e-17)
sum e = 1.1963613213293547
sum de = 1.8214596497756474e-17
Info: cfl dt = 0.0027078182514589455 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7026e+04 | 13440 | 2.005e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.752860840020666 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6080054061110638, dt = 0.0027078182514589455 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1413.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 344.15 us (94.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764136904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9757727800183543e-12, max = 9.998396018270778e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.587432640653194e-19,3.2852009337923074e-19)
sum a = (1.2079477198308708e-17,2.2999401250250612e-18,4.194994957207169e-18)
sum e = 1.1963613798481274
sum de = -1.0083080204115191e-17
Info: cfl dt = 0.002699048665244194 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7340e+04 | 13440 | 1.996e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.842005110167236 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6107132243625227, dt = 0.002699048665244194 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1122.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 336.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.876190476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.984362016326188e-12, max = 9.997331355331555e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-19,2.594919424914343e-19)
sum a = (-1.5632405537279714e-17,-3.986562883376773e-18,2.609952887710731e-17)
sum e = 1.1963614027127085
sum de = -1.3010426069826053e-17
Info: cfl dt = 0.0026892099191715693 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5770e+04 | 13440 | 2.043e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.548768245045665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6134122730277669, dt = 0.0026892099191715693 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1082.00 ns (0.3%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 316.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764880952380953
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9618830889564598e-12, max = 9.990502400698298e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.749850312562653e-20,3.5831749473860493e-19)
sum a = (2.4245202151305856e-18,-1.724955093768796e-17,1.1839301159211038e-17)
sum e = 1.1963614265814633
sum de = -1.3118846287074604e-17
Info: cfl dt = 0.002702891159505682 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7354e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.516765740981135 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6161014829469385, dt = 0.002702891159505682 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 312.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 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.8758184523809525
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.981248406902803e-12, max = 9.994579964505565e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.583083854271089e-21,3.659540146849772e-19)
sum a = (-1.3071326377225765e-17,4.101559889628026e-17,4.1227025683815114e-17)
sum e = 1.1963614686780422
sum de = 1.2630955309456127e-17
Info: cfl dt = 0.00272143768721316 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6737e+04 | 13440 | 2.014e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.316965613589964 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6188043741064442, dt = 0.0011956258935560404 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1092.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 : 341.82 us (95.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 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.8748511904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0136165453907066e-12, max = 9.857181508166777e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.8332335417084355e-20,4.578917254118904e-19)
sum a = (-5.910846121314408e-17,-1.1116377270954463e-17,8.776307982289642e-18)
sum e = 1.1963607043807662
sum de = -2.710505431213761e-17
Info: cfl dt = 0.0027250952848026414 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8656e+04 | 13440 | 1.958e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.987676932479328 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 284 [SPH][rank=0]
Info: time since start : 614.120390079 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1948.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1942.55 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1852.88 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6200000000000002, dt = 0.0027250952848026414 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.66 us (1.6%)
patch tree reduce : 1132.00 ns (0.2%)
gen split merge : 801.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 569.18 us (96.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 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.8561011904761904
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.990390306908497e-12, max = 9.992519622673792e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8207859323115067e-19,4.664266594696006e-19)
sum a = (-5.46906595563251e-17,9.199760500100246e-19,2.3218614293417063e-17)
sum e = 1.196361507142754
sum de = 2.4936649967166602e-18
Info: cfl dt = 0.002707672043218586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6385e+04 | 13440 | 2.025e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.456581088830745 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6227250952848029, dt = 0.002707672043218586 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 349.56 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8550595238095242
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0035853427227046e-12, max = 9.998763629668076e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.9707559948240377e-19,5.490807577126888e-19)
sum a = (5.326278006203871e-17,-6.133173666733497e-19,2.2649319218199272e-17)
sum e = 1.1963615314067095
sum de = 1.5178830414797062e-18
Info: cfl dt = 0.002692533282573101 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6890e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.51340717516978 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6254327673280214, dt = 0.002692533282573101 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1553.00 ns (0.5%)
LB compute : 324.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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.8593005952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0010906245548737e-12, max = 9.986185330216413e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.2458009010552416e-19,6.094242388575521e-19)
sum a = (-3.7565688708742666e-17,4.231889830046113e-17,-2.2127340619511944e-17)
sum e = 1.1963615344168288
sum de = -1.4203048459560108e-17
Info: cfl dt = 0.0027159733486983285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7018e+04 | 13440 | 2.005e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.33422617622657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6281253006105946, dt = 0.0027159733486983285 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1152.00 ns (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 363.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 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.8748511904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.007478177680998e-12, max = 9.998365777614006e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.162417671909459e-19,4.917319902722852e-19)
sum a = (3.2275826421185026e-17,2.897924557531577e-17,7.723186960979338e-17)
sum e = 1.1963615581077043
sum de = 1.2034644114589099e-17
Info: cfl dt = 0.002717882705860776 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6762e+04 | 13440 | 2.013e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.56887180801114 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6308412739592929, dt = 0.002717882705860776 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1393.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 : 347.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8774553571428572
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.992046398346934e-12, max = 9.992711360078433e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.6415718646230135e-19,8.391187799896122e-19)
sum a = (1.2247181165758451e-17,-8.969766487597738e-18,4.477695930908166e-18)
sum e = 1.1963615599515993
sum de = 1.0516761073109393e-17
Info: cfl dt = 0.002703723104640168 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6773e+04 | 13440 | 2.013e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.610817390631496 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6335591566651537, dt = 0.002703723104640168 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 352.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.877306547619048
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0017072603503337e-12, max = 9.998515244082265e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.0665868333667484e-19,7.525715539307264e-19)
sum a = (1.4393791949115176e-17,1.1729694637627812e-17,-1.0261087036960768e-17)
sum e = 1.1963615464869413
sum de = 7.26415455565288e-18
Info: cfl dt = 0.002720320744688419 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6028e+04 | 13440 | 2.035e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.81849415843201 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6362628797697939, dt = 0.002720320744688419 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1343.00 ns (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 357.42 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8775297619047622
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.999548819085561e-12, max = 9.99279751169778e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.024895218793857e-19,6.950730508050999e-19)
sum a = (2.288440424399936e-17,-1.1499700625125306e-17,2.548621151043396e-17)
sum e = 1.1963615545913406
sum de = -4.87890977618477e-18
Info: cfl dt = 0.0027177645719080458 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6144e+04 | 13440 | 2.032e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.19605920478274 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6389832005144823, dt = 0.0010167994855179163 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1262.00 ns (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 322.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 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.8771577380952384
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.4906665133024e-12, max = 9.95452381694269e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.197885481783886e-19,7.745826996585053e-19)
sum a = (2.085279046689389e-17,-2.437936532526565e-17,5.356344931796647e-17)
sum e = 1.1963607168896333
sum de = -2.1467203015212988e-17
Info: cfl dt = 0.002722060278647759 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7525e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.39092585178316 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 292 [SPH][rank=0]
Info: time since start : 622.834618171 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1928.66 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.39 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1853.36 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6400000000000002, dt = 0.002722060278647759 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.50 us (1.5%)
patch tree reduce : 1353.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 614.92 us (96.3%)
LB move op cnt : 0
LB apply : 4.14 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (74.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8649553571428574
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9989644078963303e-12, max = 9.993377178064309e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.708158697989762e-20,9.412385173116885e-19)
sum a = (-9.23809283551733e-18,3.833233541708435e-18,-2.6773938403351636e-17)
sum e = 1.1963615412826611
sum de = 1.5720931501039814e-17
Info: cfl dt = 0.0027218225267528584 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5055e+04 | 13440 | 2.066e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.43331211969378 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.642722060278648, dt = 0.0027218225267528584 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1212.00 ns (0.3%)
gen split merge : 702.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 347.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8648065476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0034409744400274e-12, max = 9.996634799782613e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.4374625781406633e-19,7.56314946061301e-19)
sum a = (1.556292817933625e-17,6.88448744090835e-17,3.2354287920241873e-17)
sum e = 1.1963615417366507
sum de = -1.1926223897340549e-17
Info: cfl dt = 0.002717248152677054 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6967e+04 | 13440 | 2.007e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.82312145528044 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6454438828054009, dt = 0.002717248152677054 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1292.00 ns (0.3%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1131.00 ns (0.3%)
LB compute : 357.55 us (95.1%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8642857142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9890165608620196e-12, max = 9.994383572133742e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.551964830778767e-19,9.379443322367828e-19)
sum a = (-4.5922137829667055e-17,-2.6679305450290712e-17,-1.7327413494003912e-17)
sum e = 1.1963615295987886
sum de = 2.4936649967166602e-18
Info: cfl dt = 0.002722346288269879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7445e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.088928319870654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6481611309580779, dt = 0.002722346288269879 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.83 us (1.3%)
patch tree reduce : 1202.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 353.78 us (95.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8712797619047616
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0140882072525477e-12, max = 9.988694086988795e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.0124476093969286e-19,8.028827441656497e-19)
sum a = (1.0081404214693186e-17,-4.1245592908782763e-17,1.4913674248209382e-18)
sum e = 1.196361520594725
sum de = -1.0299920638612292e-17
Info: cfl dt = 0.002711495679161018 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7097e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.92706311689692 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6508834772463478, dt = 0.002711495679161018 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 326.41 us (94.9%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.870386904761905
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9994796672885466e-12, max = 9.998562900330019e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.197885481783886e-19,8.370224803964904e-19)
sum a = (4.389052405256158e-18,-2.928590425865245e-17,4.048852928429535e-19)
sum e = 1.196361499383801
sum de = -3.122502256758253e-17
Info: cfl dt = 0.0027254357233772093 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7091e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.72769124257635 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6535949729255088, dt = 0.0027254357233772093 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1152.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 330.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.8717261904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0139936370224495e-12, max = 9.999080975038338e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.94773579434654e-20,8.368727447112674e-19)
sum a = (-4.465717076090328e-18,-4.9065389333867974e-18,-5.032077331877749e-17)
sum e = 1.1963614975874248
sum de = -1.0842021724855044e-18
Info: cfl dt = 0.0027378991345489586 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6436e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.50003706203393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6563204086488861, dt = 0.0027378991345489586 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1442.00 ns (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 344.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8739583333333334
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.005058674770634e-12, max = 9.985967592393839e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,4.551964830778767e-20,6.355531159289631e-19)
sum a = (-3.4748262055586965e-17,3.2199161750350857e-17,1.4297961110572465e-17)
sum e = 1.196361504823137
sum de = -7.26415455565288e-18
Info: cfl dt = 0.0027404621556200866 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6654e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.88196795305259 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.659058307783435, dt = 0.0009416922165652597 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1363.00 ns (0.4%)
LB compute : 351.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8735863095238097
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0594361033812903e-12, max = 9.964519201661878e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.145621276130426e-20,7.380471924640968e-19)
sum a = (-9.23809283551733e-18,-1.2726335358472006e-17,-4.37707355043832e-18)
sum e = 1.196360740999971
sum de = 6.505213034913027e-19
Info: cfl dt = 0.002744611005780952 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8427e+04 | 13440 | 1.964e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.26006736189826 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 300 [SPH][rank=0]
Info: time since start : 631.322582452 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1948.51 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1952.26 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1868.13 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6600000000000003, dt = 0.002744611005780952 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (1.6%)
patch tree reduce : 1242.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 : 589.14 us (96.4%)
LB move op cnt : 0
LB apply : 3.27 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.8661458333333336
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0106425597739195e-12, max = 9.999233675329973e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9405744804898953e-19,7.075759805212192e-19)
sum a = (-2.0661128789808466e-17,-1.0886383258451956e-17,-8.60321353017187e-18)
sum e = 1.1963615173963875
sum de = 5.637851296924623e-18
Info: cfl dt = 0.0027476576737581982 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6645e+04 | 13440 | 2.017e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.995022188719226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6627446110057812, dt = 0.0027476576737581982 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1183.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.4%)
LB compute : 329.26 us (94.6%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8642857142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.003136244642336e-12, max = 9.985326754270532e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.3478555442964167e-19,6.798748787549668e-19)
sum a = (-1.9856149746049694e-17,1.8859509025205503e-17,-3.917085525433308e-18)
sum e = 1.1963615746205363
sum de = 3.838075690598686e-17
Info: cfl dt = 0.0027359517057193986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7221e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.47295013499579 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6654922686795394, dt = 0.0027359517057193986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1242.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.4%)
LB compute : 313.74 us (94.7%)
LB move op cnt : 0
LB apply : 2.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8639880952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9951230626613917e-12, max = 9.99393469204803e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.98942740891943e-20,6.805486893384703e-19)
sum a = (-5.3952762099546227e-17,2.790594018363741e-17,-6.03255128626365e-18)
sum e = 1.1963616324235788
sum de = -1.2468324983583301e-17
Info: cfl dt = 0.002737889998258462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6952e+04 | 13440 | 2.007e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.065673575648034 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6682282203852588, dt = 0.002737889998258462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1523.00 ns (0.4%)
gen split merge : 531.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 387.99 us (95.3%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.867782738095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0077182434921634e-12, max = 9.995816358396154e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,8.145621276130426e-20,6.61532257315151e-19)
sum a = (-5.581188036727482e-17,2.2999401250250612e-18,-1.3617562156919217e-17)
sum e = 1.196361714523169
sum de = -1.680513367352532e-17
Info: cfl dt = 0.002728278738591949 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6895e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.0580640194359 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6709661103835172, dt = 0.002728278738591949 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 377.95 us (95.3%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.8783482142857144
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.005005895791006e-12, max = 9.998943955190665e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.25824851045217e-19,6.099483137558325e-19)
sum a = (1.6597901235597526e-17,-6.7464910334068465e-18,-2.0450300945014504e-17)
sum e = 1.1963617962929207
sum de = -1.235990476633475e-17
Info: cfl dt = 0.002730348605095332 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7463e+04 | 13440 | 1.992e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.300926079512195 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6736943891221091, dt = 0.002730348605095332 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1122.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.8793898809523812
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0103126526645176e-12, max = 9.994219210133972e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.9166167708542177e-20,5.284172331519168e-19)
sum a = (2.165776951065266e-17,-1.1039712600120295e-17,1.6236139820098793e-17)
sum e = 1.1963618866485013
sum de = -6.288372600415926e-18
Info: cfl dt = 0.002726506885219062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8052e+04 | 13440 | 1.975e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.76967969681393 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6764247377272045, dt = 0.002726506885219062 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1092.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 326.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.878869047619048
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0012342863260708e-12, max = 9.99392169847322e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.6770396744974404e-20,6.347295696602366e-19)
sum a = (6.094841331316413e-18,4.75320959171846e-18,-8.265170247212458e-17)
sum e = 1.196361967021701
sum de = -3.903127820947816e-18
Info: cfl dt = 0.002735236703840003 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8002e+04 | 13440 | 1.976e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.66253974463542 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6791512446124235, dt = 0.0008487553875767828 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 1062.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 322.54 us (95.1%)
LB move op cnt : 0
LB apply : 2.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8787202380952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0989523766010188e-12, max = 9.882396464365084e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,6.229004505276208e-20,4.2644723151506344e-19)
sum a = (-1.1308038948039885e-18,9.50641918343692e-18,-4.620244303240449e-17)
sum e = 1.1963609176766385
sum de = 2.0166160408230382e-17
Info: cfl dt = 0.0027379530484623734 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8789e+04 | 13440 | 1.954e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.638895658044765 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 308 [SPH][rank=0]
Info: time since start : 639.858067947 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1938.07 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1950.46 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1862.09 ms [sph::CartesianRender][rank=0]
---------------- t = 0.6800000000000003, dt = 0.0027379530484623734 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.77 us (1.6%)
patch tree reduce : 1182.00 ns (0.2%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.2%)
LB compute : 598.04 us (96.2%)
LB move op cnt : 0
LB apply : 4.39 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 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.869717261904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0055447632168912e-12, max = 9.995507003416652e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.0785656881845873e-19,3.1459467465349307e-19)
sum a = (-1.24963413459695e-17,-2.7599281500300737e-18,3.133668420346646e-17)
sum e = 1.1963620368527277
sum de = 1.1058862159352145e-17
Info: cfl dt = 0.002720081271981626 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.3603e+04 | 13440 | 2.113e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.64555116254509 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6827379530484626, dt = 0.002720081271981626 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1102.00 ns (0.3%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1443.00 ns (0.4%)
LB compute : 344.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 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.8578125
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0075688405835587e-12, max = 9.995961284503275e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.0780969336054975e-20,5.1202117561999985e-19)
sum a = (-4.4484675251526395e-17,-1.487294614182873e-17,-2.033530393876325e-17)
sum e = 1.1963621033239185
sum de = -1.734723475976807e-17
Info: cfl dt = 0.0027270780178387504 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5907e+04 | 13440 | 2.039e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.01968875488625 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6854580343204443, dt = 0.0027270780178387504 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1232.00 ns (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 325.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.856696428571429
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0126888555235613e-12, max = 9.99430250666387e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.197885481783886e-20,3.9066040274676987e-19)
sum a = (1.533293416683374e-17,-1.1039712600120295e-17,4.85431112638102e-17)
sum e = 1.1963621645199092
sum de = -4.662069341687669e-18
Info: cfl dt = 0.0027342101924042427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8249e+04 | 13440 | 1.969e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.85394031062547 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6881851123382831, dt = 0.0027342101924042427 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 521.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 321.73 us (94.8%)
LB move op cnt : 0
LB apply : 3.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8587797619047617
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0255969729860382e-12, max = 9.989936479224047e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.749850312562653e-20,6.169110231187014e-19)
sum a = (2.963089527740621e-17,-1.0733053916783619e-18,2.1753600349195372e-18)
sum e = 1.196362220748743
sum de = 5.4752209710517974e-18
Info: cfl dt = 0.0027233235253717593 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8273e+04 | 13440 | 1.969e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 50.00171949053816 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6909193225306873, dt = 0.0027233235253717593 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 409.52 us (95.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.9%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9867879859319858e-12, max = 9.979623740930446e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,6.708158697989762e-20,5.553696564920542e-19)
sum a = (5.6348533063114e-18,-1.5792922191838754e-17,1.894575677989394e-17)
sum e = 1.1963622522148196
sum de = -2.2280354644577116e-17
Info: cfl dt = 0.0027138331521893446 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8457e+04 | 13440 | 1.963e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.936499030507356 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6936426460560591, dt = 0.0027138331521893446 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1543.00 ns (0.4%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 368.88 us (91.2%)
LB move op cnt : 0
LB apply : 3.21 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 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.8753720238095235
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.986766604188192e-12, max = 9.922957176613636e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-20,6.20654415249276e-19)
sum a = (1.9127835373125092e-17,3.618572463372763e-17,-1.0682263572355982e-16)
sum e = 1.1963622752806848
sum de = -4.119968255444917e-17
Info: cfl dt = 0.0027186101698456174 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7965e+04 | 13440 | 1.977e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.40480524484518 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.6963564792082484, dt = 0.0027186101698456174 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 343.99 us (94.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8754464285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0674271695536936e-12, max = 9.868392490011657e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6353480599245493e-19,1.6426004668961537e-19)
sum a = (-3.9482305479596886e-18,-1.2113017991798656e-17,-8.164787443838968e-18)
sum e = 1.1963623007508026
sum de = -1.9244588561617704e-17
Info: cfl dt = 0.0027272744002690367 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8360e+04 | 13440 | 1.966e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.77993599247238 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.699075089378094, dt = 0.0009249106219062497 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1132.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 364.16 us (95.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8757440476190474
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.014704619939084e-12, max = 9.963463080975786e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.270696119849099e-20,2.9108617207348434e-19)
sum a = (-1.5332934166833742e-19,3.557240726705428e-17,2.438894840911992e-17)
sum e = 1.1963610671993297
sum de = -2.1927988938519327e-17
Info: cfl dt = 0.00273059454320444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7930e+04 | 13440 | 1.979e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.82927399832021 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 316 [SPH][rank=0]
Info: time since start : 648.5239068650001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1981.58 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1977.69 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.95 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7000000000000003, dt = 0.00273059454320444 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.35 us (1.8%)
patch tree reduce : 1273.00 ns (0.2%)
gen split merge : 611.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 602.58 us (95.9%)
LB move op cnt : 0
LB apply : 4.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (72.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874404761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.417014769096071e-12, max = 9.703609571970374e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.187312890703316e-20,3.7673498402103216e-19)
sum a = (4.638212585467207e-18,-2.2386083883577264e-17,3.832275233323008e-17)
sum e = 1.19636230468417
sum de = 1.111307226797642e-17
Info: cfl dt = 0.0027313386513768555 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 4.5420e+04 | 13440 | 2.959e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.22050078306491 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7027305945432047, dt = 0.0027313386513768555 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1333.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 364.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8627232142857144
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.129887120299521e-12, max = 9.817928043941863e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.389547158869308e-19,4.905341047905013e-19)
sum a = (5.255363185682265e-17,-4.369886237547616e-17,-9.81786940870073e-18)
sum e = 1.1963622937180791
sum de = 1.22514845490862e-17
Info: cfl dt = 0.002718899820940029 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7839e+04 | 13440 | 1.981e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.631789978653444 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7054619331945816, dt = 0.002718899820940029 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 332.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
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.8622023809523809
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0151503409167016e-12, max = 9.964780146639315e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.583083854271089e-21,4.0338793599072364e-19)
sum a = (2.315273059191895e-17,3.11258563586725e-17,-2.2587328644516957e-17)
sum e = 1.1963622427280014
sum de = 2.553296116203363e-17
Info: cfl dt = 0.002696954962608385 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7650e+04 | 13440 | 1.987e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.26813385141831 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7081808330155216, dt = 0.002696954962608385 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1382.00 ns (0.4%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 321.53 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
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.8626488095238096
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0057262039776515e-12, max = 9.997603215096857e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,5.749850312562653e-20,3.1714018130228383e-19)
sum a = (1.7000390757476912e-17,2.5606000058612347e-17,4.563464531403892e-17)
sum e = 1.1963621671518276
sum de = -3.3610267347050637e-18
Info: cfl dt = 0.0027059108130421208 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7624e+04 | 13440 | 1.987e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.851197379689076 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.71087778797813, dt = 0.0027059108130421208 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1272.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 338.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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.873065476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0135700833727394e-12, max = 9.97893548144249e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,9.583083854271088e-20,5.345563962460592e-19)
sum a = (1.2074685656381571e-17,6.470498218403839e-17,1.6315200261896528e-18)
sum e = 1.1963621068762174
sum de = 5.7462715141731735e-18
Info: cfl dt = 0.0027034715382778384 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7553e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.962173026649396 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7135836987911721, dt = 0.0027034715382778384 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 332.69 us (94.8%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.870610119047619
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.006343008856459e-12, max = 9.99163422056341e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.504049411507412e-19,4.83646263270244e-19)
sum a = (1.8974506031456756e-17,4.9065389333867974e-18,-1.1848285300324417e-17)
sum e = 1.196362023800436
sum de = 5.963111948670274e-19
Info: cfl dt = 0.0027130881685006086 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7580e+04 | 13440 | 1.989e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.93793017991537 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.71628717032945, dt = 0.0027130881685006086 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1574.00 ns (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 335.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.49 us (94.6%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0030904199639903e-12, max = 9.970542687247244e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.724955093768796e-19,4.3243665892398287e-19)
sum a = (-7.2256452261204e-18,-1.7939532975195477e-17,9.837035576409272e-18)
sum e = 1.1963619415109061
sum de = -8.944667923005412e-18
Info: cfl dt = 0.0027086199556655205 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7616e+04 | 13440 | 1.988e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.137676871322384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7190002584979506, dt = 0.0009997415020497336 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1273.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 324.57 us (89.8%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8723958333333333
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.97323047670962e-12, max = 9.933485966368754e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,9.583083854271088e-20,4.680737520070535e-19)
sum a = (-5.558188635477232e-19,-1.5179604825165406e-17,2.2375302914241207e-17)
sum e = 1.1963610095189112
sum de = 7.37257477290143e-18
Info: cfl dt = 0.0026972198023683166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5945e+04 | 13440 | 2.038e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.65924923014366 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 324 [SPH][rank=0]
Info: time since start : 657.261734113 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1994.74 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1994.09 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1910.40 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7200000000000003, dt = 0.0026972198023683166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.94 us (1.8%)
patch tree reduce : 1162.00 ns (0.2%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 537.91 us (95.7%)
LB move op cnt : 0
LB apply : 4.00 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8752232142857141
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0042460586043713e-12, max = 9.982190589604338e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,2.395770963567772e-19,5.408452950254246e-19)
sum a = (0,4.75320959171846e-17,-5.1408453336237255e-17)
sum e = 1.1963618217629766
sum de = -1.3986208025063007e-17
Info: cfl dt = 0.002705965412063804 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6161e+04 | 13440 | 2.031e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.799465636573665 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7226972198023687, dt = 0.002705965412063804 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1643.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 359.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 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.865550595238095
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.008393594748565e-12, max = 9.977163809508626e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,4.791541927135544e-19,2.982734849641876e-19)
sum a = (-3.844733242333561e-17,-2.1466107833567238e-17,-6.466904561958487e-17)
sum e = 1.196361720152014
sum de = 2.927345865710862e-18
Info: cfl dt = 0.002697627502226299 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5906e+04 | 13440 | 2.039e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.769482386944155 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7254031852144325, dt = 0.002697627502226299 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1252.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 336.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.863764880952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0028767777763746e-12, max = 9.997439254251385e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.354079348994881e-19,1.0631233650831989e-19)
sum a = (3.87156587712552e-17,-2.5146012033607338e-17,2.6061196541690227e-17)
sum e = 1.196361622612439
sum de = 2.927345865710862e-18
Info: cfl dt = 0.0027043841970114868 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7238e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.58448704870724 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7281008127166588, dt = 0.0027043841970114868 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1212.00 ns (0.3%)
gen split merge : 530.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 330.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8628720238095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.012769712247083e-12, max = 9.996621487199529e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.587432640653194e-19,2.94679828518836e-19)
sum a = (-4.5021327947365575e-17,-3.833233541708435e-18,1.670091938703094e-17)
sum e = 1.1963615437243256
sum de = 2.4069288229178198e-17
Info: cfl dt = 0.0027153038533349293 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6363e+04 | 13440 | 2.025e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.07273423154922 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7308051969136703, dt = 0.0027153038533349293 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1282.00 ns (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 316.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8722470238095235
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.011246374786999e-12, max = 9.99528932034439e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,2.0124476093969286e-19,3.2552537967477105e-19)
sum a = (-3.1049191687838326e-18,-4.691877855051125e-17,3.3708497457398555e-17)
sum e = 1.196361479665282
sum de = 1.100465205072787e-17
Info: cfl dt = 0.002713928994922575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6449e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.329049288159716 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7335205007670053, dt = 0.002713928994922575 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.4%)
LB compute : 344.43 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.8768601190476188
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0083413089677314e-12, max = 9.997521273213887e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,7.666467083416871e-20,4.486081129280654e-19)
sum a = (-7.762297921959582e-18,5.0598682750551345e-18,1.8176714300588686e-17)
sum e = 1.1963614272536933
sum de = 5.637851296924623e-18
Info: cfl dt = 0.002707851280955511 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6878e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.61696812268471 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7362344297619279, dt = 0.002707851280955511 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1202.00 ns (0.3%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 344.39 us (94.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8769345238095236
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0048177209510396e-12, max = 9.998013830364453e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,1.3416317395979523e-19,4.785552499726625e-19)
sum a = (4.3085545008802815e-17,2.483935335027066e-17,-2.919486496203687e-17)
sum e = 1.1963613938632152
sum de = -2.7972416050126014e-17
Info: cfl dt = 0.0027101993884276637 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5602e+04 | 13440 | 2.049e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.58252512444515 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7389422810428834, dt = 0.0010577189571169265 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 344.20 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8765624999999997
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0109881768938577e-12, max = 9.985888475387997e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,2.1082784479396395e-19,3.8152652594816774e-19)
sum a = (-4.064185862596369e-17,1.3876305420984537e-17,5.587536829780936e-17)
sum e = 1.196360934874284
sum de = -1.1275702593849246e-17
Info: cfl dt = 0.0027152473475676926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.9012e+04 | 13440 | 1.948e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.5521791862417 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 332 [SPH][rank=0]
Info: time since start : 665.953730864 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1994.16 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1920.43 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7400000000000003, dt = 0.0027152473475676926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.17 us (1.6%)
patch tree reduce : 1533.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 615.34 us (95.9%)
LB move op cnt : 0
LB apply : 5.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.10 us (80.8%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.009005440375005e-12, max = 9.998179584168813e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.545741026080303e-19,5.818728727765227e-19)
sum a = (-5.275487661776234e-17,-6.593161691738509e-17,9.821463065146082e-18)
sum e = 1.1963613816008436
sum de = -7.697835424647081e-18
Info: cfl dt = 0.0027198298917871576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5481e+04 | 13440 | 2.053e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.62413697455386 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.742715247347568, dt = 0.0027198298917871576 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1222.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 : 351.24 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8743303571428571
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.006235327591979e-12, max = 9.999420767354064e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-4.791541927135544e-20,5.483320792865739e-19)
sum a = (8.481029211029914e-18,2.6755970121124878e-17,-1.3502565150667964e-17)
sum e = 1.1963614061893921
sum de = 3.198396408832238e-17
Info: cfl dt = 0.002701997214642099 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6294e+04 | 13440 | 2.027e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.296993921102654 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7454350772393552, dt = 0.002701997214642099 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1102.00 ns (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 331.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.857217261904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.010882476239406e-12, max = 9.986868821683418e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.587432640653194e-19,4.7705789312043265e-19)
sum a = (8.797270978220859e-18,-2.2232754541908927e-18,-5.017942283192699e-17)
sum e = 1.1963614356246972
sum de = -6.071532165918825e-18
Info: cfl dt = 0.0027210515810590554 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7240e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.66500773967914 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7481370744539974, dt = 0.0027210515810590554 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1233.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 324.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8555059523809523
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.00535594187036e-12, max = 9.993902804622907e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,2.6832634791959046e-19,2.901877579621464e-19)
sum a = (3.011004947011976e-17,-1.303299404180868e-17,5.3116638033261075e-17)
sum e = 1.1963614936536378
sum de = 1.9136168344369153e-17
Info: cfl dt = 0.0027148294005358217 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6559e+04 | 13440 | 2.019e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.51201703177801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7508581260350564, dt = 0.0027148294005358217 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.0%)
patch tree reduce : 1192.00 ns (0.2%)
gen split merge : 631.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.2%)
LB compute : 574.13 us (96.9%)
LB move op cnt : 0
LB apply : 3.19 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8612351190476193
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.013408648526006e-12, max = 9.999208525480667e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,1.724955093768796e-19,5.710919034404677e-19)
sum a = (2.1006119808562225e-17,-2.4532694666933987e-18,-5.668394099801349e-18)
sum e = 1.196361552946296
sum de = -4.119968255444917e-18
Info: cfl dt = 0.002724063875067553 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6150e+04 | 13440 | 2.032e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.10325823698226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7535729554355922, dt = 0.002724063875067553 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1132.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 : 345.34 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.43 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.8744791666666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.003932615434614e-12, max = 9.99064008597923e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1499700625125307e-19,4.851436201224739e-19)
sum a = (-6.708158697989762e-19,-2.288440424399936e-17,1.8428270251763305e-17)
sum e = 1.1963616265265533
sum de = 7.589415207398531e-18
Info: cfl dt = 0.0026821351100924005 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6424e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.46667201569657 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7562970193106597, dt = 0.0026821351100924005 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1112.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 335.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 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.874330357142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.022273262081724e-12, max = 9.996403248734857e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.666467083416871e-20,5.597119913635208e-19)
sum a = (-5.4240254615174365e-17,-3.2275826421185026e-17,-2.36246974717418e-17)
sum e = 1.1963616788817744
sum de = 2.5153490401663703e-17
Info: cfl dt = 0.0026902960158081456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6586e+04 | 13440 | 2.018e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.83743635575099 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7589791544207521, dt = 0.0010208455792481974 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 602.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1103.00 ns (0.3%)
LB compute : 350.54 us (95.0%)
LB move op cnt : 0
LB apply : 3.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874404761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.995220760699901e-12, max = 9.991774328556462e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.583083854271089e-21,4.824483777884601e-19)
sum a = (6.669826362572678e-18,-4.7110440227596673e-17,5.774526753487402e-17)
sum e = 1.1963610959717765
sum de = 3.0357660829594124e-18
Info: cfl dt = 0.00269469997333062 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6658e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.227032917281925 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 340 [SPH][rank=0]
Info: time since start : 674.84838675 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.11 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1960.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.17 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7600000000000003, dt = 0.00269469997333062 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.19 us (1.7%)
patch tree reduce : 1122.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 572.83 us (95.9%)
LB move op cnt : 0
LB apply : 4.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9989192719027604e-12, max = 9.984383286608394e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.9166167708542177e-19,6.774042399487876e-19)
sum a = (-9.889742537607764e-18,1.698122458976837e-17,2.3902606903515664e-17)
sum e = 1.1963617511750153
sum de = -1.5178830414797062e-17
Info: cfl dt = 0.0026970728153278213 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 5.9322e+04 | 13440 | 2.266e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.81849669805459 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.762694699973331, dt = 0.0026970728153278213 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.2%)
patch tree reduce : 1313.00 ns (0.3%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 424.64 us (95.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (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.875297619047619
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0122228848834e-12, max = 9.997049094483695e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,3.8332335417084355e-20,6.899820375075184e-19)
sum a = (-3.7105700683737657e-17,1.3799640750150368e-18,7.886878012065106e-18)
sum e = 1.1963618412360533
sum de = -1.2468324983583301e-17
Info: cfl dt = 0.0026903725207965802 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7326e+04 | 13440 | 1.996e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.63863555078364 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7653917727886588, dt = 0.0026903725207965802 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1053.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 : 328.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8623511904761902
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.003576467918379e-12, max = 9.999150540582948e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-9.583083854271088e-20,6.949233151198769e-19)
sum a = (-1.8514518006451744e-17,-8.89310181676357e-18,3.0665868333667483e-18)
sum e = 1.1963619025785857
sum de = -2.0816681711721685e-17
Info: cfl dt = 0.00268694968452026 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6726e+04 | 13440 | 2.014e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.0850564799679 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7680821453094554, dt = 0.00268694968452026 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 331.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8613095238095236
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0108492343345854e-12, max = 9.996104565837878e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.6832634791959046e-19,6.974688217686677e-19)
sum a = (4.914205400470214e-17,-2.5548501555486724e-17,8.643941636552522e-18)
sum e = 1.1963619579387055
sum de = 1.3118846287074604e-17
Info: cfl dt = 0.0026871411026582557 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7253e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.40341167212963 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7707690949939756, dt = 0.0026871411026582557 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1032.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 350.24 us (95.1%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8616071428571428
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.001240218962965e-12, max = 9.993241424864252e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.395770963567772e-19,7.269667517575959e-19)
sum a = (4.024895218793857e-18,-2.0526965615848673e-17,3.38762014248483e-17)
sum e = 1.1963620065329899
sum de = 6.071532165918825e-18
Info: cfl dt = 0.002716897760149743 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6741e+04 | 13440 | 2.014e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.03838809930211 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7734562360966338, dt = 0.002716897760149743 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1242.00 ns (0.4%)
gen split merge : 630.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 314.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 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.8720982142857145
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9972563749437447e-12, max = 9.999851217555766e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.599880250050123e-19,8.651727892184118e-19)
sum a = (5.048368574430009e-17,-3.996145967231044e-17,-3.327725868395636e-17)
sum e = 1.1963620673632849
sum de = -1.734723475976807e-17
Info: cfl dt = 0.0027154231318514627 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6261e+04 | 13440 | 2.028e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.22060939857801 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7761731338567835, dt = 0.0027154231318514627 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1002.00 ns (0.3%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1392.00 ns (0.4%)
LB compute : 346.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8694940476190478
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9997738386816993e-12, max = 9.991059001077552e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.024895218793857e-19,6.735111121329899e-19)
sum a = (1.0982214096994668e-17,1.2074685656381571e-17,3.522741624830052e-17)
sum e = 1.1963620991560842
sum de = 1.6263032587282567e-18
Info: cfl dt = 0.002715424373345576 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7473e+04 | 13440 | 1.992e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.075926548778384 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.778888556988635, dt = 0.0011114430113653428 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1563.00 ns (0.4%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.4%)
LB compute : 330.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8697172619047622
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0498179799403716e-12, max = 9.909932468308614e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-3.6415718646230135e-19,8.09770585685907e-19)
sum a = (2.2386083883577264e-17,-2.790594018363741e-17,-2.984172312220017e-17)
sum e = 1.1963612779408017
sum de = 2.0491421059976034e-17
Info: cfl dt = 0.0027162804753672128 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8364e+04 | 13440 | 1.966e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.352583898272645 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 348 [SPH][rank=0]
Info: time since start : 683.440211822 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1988.38 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1988.65 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1919.43 ms [sph::CartesianRender][rank=0]
---------------- t = 0.7800000000000004, dt = 0.0027162804753672128 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.55 us (1.7%)
patch tree reduce : 1342.00 ns (0.2%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 538.37 us (96.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (71.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8704613095238096
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.000480585503816e-12, max = 9.997308500937234e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.545741026080303e-19,6.787518611157944e-19)
sum a = (-3.0876696178461445e-17,4.228056596504404e-17,-3.8543163261878316e-17)
sum e = 1.1963621164641827
sum de = 1.0842021724855044e-17
Info: cfl dt = 0.0027129334523932924 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7115e+04 | 13440 | 2.003e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.83146865643126 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7827162804753676, dt = 0.0027129334523932924 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1132.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 321.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 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.8734374999999999
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.000149895623828e-12, max = 9.99413431113187e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.9166167708542177e-19,5.695945465882379e-19)
sum a = (1.8351605580929135e-17,4.734043424009918e-18,1.1231374277205716e-17)
sum e = 1.1963621437723568
sum de = 2.1141942363467336e-17
Info: cfl dt = 0.0027189206407589165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7413e+04 | 13440 | 1.994e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.98766095714377 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7854292139277609, dt = 0.0027189206407589165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (1.3%)
patch tree reduce : 1212.00 ns (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 328.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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.8639136904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0022084474848646e-12, max = 9.9976244415291e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,3.8332335417084355e-20,6.717142839103142e-19)
sum a = (2.587432640653194e-17,-5.88976333683501e-17,-2.6257649760702784e-17)
sum e = 1.1963621663545485
sum de = -1.6046192152785466e-17
Info: cfl dt = 0.002710994801185498 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7128e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.88784989857288 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7881481345685198, dt = 0.002710994801185498 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.69 us (1.2%)
patch tree reduce : 1503.00 ns (0.4%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 363.38 us (95.4%)
LB move op cnt : 0
LB apply : 3.10 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862276785714286
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0001853943101836e-12, max = 9.99901701402904e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.187312890703316e-19,5.339574535051672e-19)
sum a = (9.27450855416356e-17,-2.37660479585923e-18,5.412286183795954e-17)
sum e = 1.1963621784163443
sum de = 6.7220534694101275e-18
Info: cfl dt = 0.0027039894862639106 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6374e+04 | 13440 | 2.025e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.198455958780336 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7908591293697054, dt = 0.0027039894862639106 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1143.00 ns (0.3%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 356.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8619791666666667
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.005532098541247e-12, max = 9.99884486923025e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.983203604220967e-19,7.957702991175578e-19)
sum a = (1.0282648975632879e-17,-1.2036353320964487e-17,-5.486555083666555e-17)
sum e = 1.196362191791708
sum de = 1.4365678785432934e-17
Info: cfl dt = 0.0027387170902883756 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7050e+04 | 13440 | 2.004e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.56298934932674 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7935631188559693, dt = 0.0027387170902883756 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 322.99 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8738095238095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0026096608623887e-12, max = 9.998813267466417e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.599880250050123e-19,4.995182459038805e-19)
sum a = (-2.6430145270079662e-17,1.310965871264285e-17,-9.134954895535737e-17)
sum e = 1.1963622395362095
sum de = 1.951563910473908e-18
Info: cfl dt = 0.0027283579614332996 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6856e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.04429980937111 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.7963018359462577, dt = 0.0027283579614332996 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.21 us (6.8%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 332.34 us (89.8%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8752976190476192
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0043460941218254e-12, max = 9.991405876820678e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.20410928648235e-19,2.0446407817198704e-19)
sum a = (4.2932215667134476e-17,1.310965871264285e-17,-2.2655009174237747e-17)
sum e = 1.1963622577825563
sum de = 1.6263032587282567e-18
Info: cfl dt = 0.0027341828665955904 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7513e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.33952623270256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.799030193907691, dt = 0.0009698060923093443 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.21 us (1.3%)
patch tree reduce : 1412.00 ns (0.4%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 319.82 us (95.2%)
LB move op cnt : 0
LB apply : 2.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 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.8756696428571427
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.132481143694203e-12, max = 9.827703485577449e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-4.983203604220967e-19,2.7296815416150304e-19)
sum a = (-4.193557494629029e-17,3.52657485837176e-18,-2.836832397960599e-17)
sum e = 1.1963613370884156
sum de = 1.7726705520137997e-17
Info: cfl dt = 0.002729288959006657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7693e+04 | 13440 | 1.985e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.584705151522673 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 356 [SPH][rank=0]
Info: time since start : 692.129228204 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1972.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.92 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1884.14 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8000000000000004, dt = 0.002729288959006657 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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 : 651.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.2%)
LB compute : 549.39 us (95.8%)
LB move op cnt : 0
LB apply : 4.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.31 us (76.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8773065476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.99445788565085e-12, max = 9.99910856983708e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-6.708158697989762e-19,1.9008945239058042e-19)
sum a = (4.689961238280271e-17,-4.4427176748400765e-17,6.109455534194176e-17)
sum e = 1.196362280802569
sum de = -1.3010426069826053e-17
Info: cfl dt = 0.002715536355771706 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4749e+04 | 13440 | 2.076e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.335082723101685 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8027292889590071, dt = 0.002715536355771706 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1012.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 330.98 us (94.8%)
LB move op cnt : 0
LB apply : 2.95 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8774553571428572
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.997701099708722e-12, max = 9.998223880729004e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-6.133173666733497e-19,4.899351620496094e-19)
sum a = (-5.050285191200864e-17,-3.365579049620006e-17,3.073294992064738e-17)
sum e = 1.1963623217646222
sum de = 1.349831704744453e-17
Info: cfl dt = 0.0027188894047958166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6474e+04 | 13440 | 2.022e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.351317383036985 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8054448253147788, dt = 0.0027188894047958166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1533.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 : 333.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8730654761904764
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0019074740859784e-12, max = 9.988871168860258e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.474805406331449e-19,5.242246339656731e-19)
sum a = (1.0081404214693186e-17,-1.9779485075215528e-17,-7.266373332501053e-18)
sum e = 1.1963623693267949
sum de = -1.5504091066542713e-17
Info: cfl dt = 0.0027301802443036247 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6351e+04 | 13440 | 2.026e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.32161868656148 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8081637147195746, dt = 0.0027301802443036247 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1032.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 320.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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.8582589285714288
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.003851647458665e-12, max = 9.99626011542557e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-4.791541927135544e-19,4.5459754033698475e-19)
sum a = (-1.8897841360622587e-17,5.136532945889304e-18,-2.3370745749603618e-18)
sum e = 1.1963624257617573
sum de = 1.5287250632045613e-17
Info: cfl dt = 0.0027126360520869433 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6639e+04 | 13440 | 2.017e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.73268275378167 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8108938949638782, dt = 0.0027126360520869433 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 872.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 316.87 us (94.7%)
LB move op cnt : 0
LB apply : 3.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8581845238095234
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0080755789790085e-12, max = 9.98973411936369e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-4.983203604220967e-19,4.492070556689573e-19)
sum a = (4.024895218793857e-19,-1.9856149746049694e-17,-3.0859925781716474e-17)
sum e = 1.1963624546768308
sum de = 0
Info: cfl dt = 0.002699182569014986 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6861e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.581156078968306 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8136065310159651, dt = 0.002699182569014986 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 892.00 ns (0.2%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 348.36 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 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.8648809523809522
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0057444796620728e-12, max = 9.99865785471935e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-5.558188635477232e-19,3.303169216019066e-19)
sum a = (-1.5735423688713127e-17,-7.513137741748534e-18,-2.7225541229984164e-17)
sum e = 1.1963624781120035
sum de = -2.6237692574149207e-17
Info: cfl dt = 0.002737322345313662 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6801e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.296708818889535 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8163057135849802, dt = 0.002737322345313662 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1002.00 ns (0.3%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 331.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8754464285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9665082174141302e-12, max = 9.998254802122407e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-5.749850312562653e-19,2.5612288957391714e-19)
sum a = (-1.1633863799085102e-17,1.7632874291858803e-17,-5.87419082557182e-17)
sum e = 1.1963625367822788
sum de = -9.324138683375338e-18
Info: cfl dt = 0.0027179351556988153 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6920e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.066565848018335 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8190430359302938, dt = 0.0009569640697065784 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1233.00 ns (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1573.00 ns (0.5%)
LB compute : 328.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 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.8763392857142855
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.047092391503913e-12, max = 9.555293720977699e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.912267984472113e-19,1.588695620215879e-19)
sum a = (9.698080860522342e-18,-3.679904200040098e-18,1.3318090786473245e-17)
sum e = 1.1963614667583926
sum de = 1.5720931501039814e-17
Info: cfl dt = 0.0027134960748495785 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7259e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.240531387538713 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 364 [SPH][rank=0]
Info: time since start : 700.9137082440001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1962.67 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1941.54 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1872.30 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8200000000000004, dt = 0.0027134960748495785 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.83 us (1.5%)
patch tree reduce : 1402.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 642.74 us (96.3%)
LB move op cnt : 0
LB apply : 4.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (73.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8764880952380953
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.003318298185334e-12, max = 9.993915649936218e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.899820375075184e-19,2.4025090694028066e-19)
sum a = (1.3607979073064945e-17,-5.343527557141559e-17,-5.2687795030782445e-17)
sum e = 1.1963625175240318
sum de = -9.053088140253962e-18
Info: cfl dt = 0.002698201696714219 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4207e+04 | 13440 | 2.093e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.667608607213715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.82271349607485, dt = 0.002698201696714219 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1263.00 ns (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.4%)
LB compute : 332.32 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8774553571428572
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0007363291506628e-12, max = 9.98294759630742e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.858128760502293e-19,-5.2407489828045014e-21)
sum a = (4.5212989624451e-17,1.947282639187885e-17,-9.504023412473353e-17)
sum e = 1.1963625164913387
sum de = 3.371868756429919e-17
Info: cfl dt = 0.0027236456479480613 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6922e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.36642957945548 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8254116977715642, dt = 0.0027236456479480613 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1152.00 ns (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 349.57 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.73 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8761160714285718
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0060158884773717e-12, max = 9.990755578161277e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.145621276130425e-19,-3.199102914789091e-19)
sum a = (7.128856079192263e-17,-4.178224560462195e-17,3.424994169516487e-17)
sum e = 1.196362539340925
sum de = 7.589415207398531e-19
Info: cfl dt = 0.002720365404332282 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6756e+04 | 13440 | 2.013e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.701758620868226 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8281353434195122, dt = 0.002720365404332282 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1072.00 ns (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 325.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.8639880952380954
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9993803153732745e-12, max = 9.993879822634664e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.197885481783886e-18,-5.910816174177363e-20)
sum a = (2.7311788984672605e-19,-4.3085545008802815e-17,-1.7929949891341207e-17)
sum e = 1.1963625376516531
sum de = 8.51098705401121e-18
Info: cfl dt = 0.0027213768451982874 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6170e+04 | 13440 | 2.031e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.21610351113153 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8308557088238445, dt = 0.0027213768451982874 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1123.00 ns (0.3%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1111.00 ns (0.3%)
LB compute : 351.95 us (95.0%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8629464285714286
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9805677016055323e-12, max = 9.991391180480296e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0541392239698197e-18,-1.6703015686624062e-19)
sum a = (-1.100138026470321e-17,-7.86579522758571e-17,2.5107679698190253e-17)
sum e = 1.1963625404290814
sum de = 3.2526065174565133e-18
Info: cfl dt = 0.0027261935811477888 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6334e+04 | 13440 | 2.026e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.35329736997782 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8335770856690428, dt = 0.0027261935811477888 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (1.8%)
patch tree reduce : 1153.00 ns (0.3%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 349.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.864732142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.011378693747139e-12, max = 9.995267482913323e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4374625781406633e-18,-5.034862415622896e-20)
sum a = (3.646363406550149e-17,2.3382724604421456e-17,-6.401500014653087e-17)
sum e = 1.1963625462392902
sum de = -9.269928574751063e-18
Info: cfl dt = 0.002731310452708775 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5876e+04 | 13440 | 2.040e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.1043430360938 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8363032792501905, dt = 0.002731310452708775 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1042.00 ns (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 321.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.874107142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9973151061314107e-12, max = 9.990306821998233e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.2074685656381572e-18,-3.336672575587709e-19)
sum a = (-2.393854346796918e-17,3.5879065950390954e-17,5.491107048497334e-17)
sum e = 1.1963625492936032
sum de = -4.336808689942018e-18
Info: cfl dt = 0.0027115369789117473 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6418e+04 | 13440 | 2.024e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.591234668120066 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8390345897028993, dt = 0.0009654102971010659 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1132.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 320.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 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.8721726190476191
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.4344703394703507e-12, max = 9.99741324229415e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.3224655718894102e-18,-1.3214174220928494e-19)
sum a = (8.8164371459294e-19,2.3306059933587286e-17,-2.928590425865245e-17)
sum e = 1.1963615336363596
sum de = 2.5099280293039428e-17
Info: cfl dt = 0.002685432131656368 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6786e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.27025373270306 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 372 [SPH][rank=0]
Info: time since start : 709.499686557 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.17 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1932.04 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1853.85 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8400000000000004, dt = 0.002685432131656368 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.63 us (1.6%)
patch tree reduce : 1342.00 ns (0.2%)
gen split merge : 741.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 570.86 us (96.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8720238095238098
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.965153339722122e-12, max = 9.994192297286668e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.082888475532633e-18,-2.4848636962754487e-19)
sum a = (2.650680994091383e-17,4.2548892312963635e-17,5.781474489281747e-17)
sum e = 1.196362490041738
sum de = -7.047314121155779e-18
Info: cfl dt = 0.002691116873252167 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6082e+04 | 13440 | 2.034e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.5336305516388 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8426854321316568, dt = 0.002691116873252167 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 336.08 us (94.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.8734375000000003
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9687687412203765e-12, max = 9.976618893108403e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.0349730562612776e-18,2.4856123747015637e-20)
sum a = (2.3267727598170205e-17,2.4149371312763143e-17,-3.481534364256687e-17)
sum e = 1.1963624827733095
sum de = -1.463672932855431e-17
Info: cfl dt = 0.002692094333836166 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6887e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.21432159515587 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.845376549004909, dt = 0.002692094333836166 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1293.00 ns (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.4%)
LB compute : 331.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8767113095238093
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9857308017082583e-12, max = 9.994785410623013e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-6.133173666733497e-19,-1.8582198536172532e-19)
sum a = (1.1346371283456969e-17,-2.37660479585923e-18,-4.762792675572731e-18)
sum e = 1.1963624616863175
sum de = 8.375461782450522e-18
Info: cfl dt = 0.0026828652109070566 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6607e+04 | 13440 | 2.018e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.030035689469806 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8480686433387452, dt = 0.0026828652109070566 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1042.00 ns (0.3%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1413.00 ns (0.4%)
LB compute : 330.32 us (94.7%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8662202380952382
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9692967525080373e-12, max = 9.993484546129108e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.378974567788739e-19,-1.6680555333840615e-19)
sum a = (-3.469076355246134e-17,-7.068482650910355e-17,1.7939532975195477e-17)
sum e = 1.1963624314202588
sum de = -2.4096393283490336e-17
Info: cfl dt = 0.002694552482304375 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6336e+04 | 13440 | 2.026e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.670381060724715 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8507515085496523, dt = 0.002694552482304375 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1233.00 ns (0.3%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 351.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.866592261904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9625401850096172e-12, max = 9.989006269121052e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0158068885527354e-18,-8.924246839289952e-20)
sum a = (-2.357438628150688e-18,3.311913780036088e-17,-1.029223205948715e-17)
sum e = 1.1963624193285323
sum de = 2.1250362580715887e-17
Info: cfl dt = 0.002708878463939515 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4743e+04 | 13440 | 2.076e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.7284067864757 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8534460610319566, dt = 0.002708878463939515 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1142.00 ns (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 350.28 us (93.8%)
LB move op cnt : 0
LB apply : 7.31 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8665178571428571
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9753155311675834e-12, max = 9.998744042271953e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.283143729246027e-19,-1.5213145618655352e-19)
sum a = (4.99182837968981e-17,-8.01145810217063e-17,-1.3703809911607657e-18)
sum e = 1.19636241441284
sum de = 1.94411002053807e-17
Info: cfl dt = 0.0027180963016132926 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6428e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.199981137989 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8561549394958962, dt = 0.0027180963016132926 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1443.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 315.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 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.8745535714285715
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.965608555518335e-12, max = 9.992503797749634e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4278794942863923e-18,-1.4254837233228245e-19)
sum a = (3.812150757229039e-17,2.2769407237748107e-17,1.122658273527858e-17)
sum e = 1.1963624128773884
sum de = 1.2956215961201778e-17
Info: cfl dt = 0.0027085582255005278 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6571e+04 | 13440 | 2.019e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.468051316836174 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8588730357975094, dt = 0.001126964202491032 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1333.00 ns (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 332.58 us (94.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 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.8783482142857142
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.2359413817686488e-12, max = 9.86878889662502e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-3.6415718646230135e-19,-1.114033498059014e-19)
sum a = (4.0661024793672227e-17,2.9132574916984108e-18,1.3350194117385054e-16)
sum e = 1.196361612633079
sum de = -1.7401444868392346e-17
Info: cfl dt = 0.0027010288168704444 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7716e+04 | 13440 | 1.985e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.441059075618785 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 380 [SPH][rank=0]
Info: time since start : 718.031464013 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1933.90 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1931.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1856.42 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8600000000000004, dt = 0.0027010288168704444 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.27 us (1.6%)
patch tree reduce : 1273.00 ns (0.2%)
gen split merge : 821.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 540.97 us (96.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 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.8808035714285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9620350639224966e-12, max = 9.988808899879226e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.3607979073064945e-18,3.096533970411346e-19)
sum a = (3.777651655353663e-17,2.614265275445153e-17,9.453712222238428e-17)
sum e = 1.1963623871571312
sum de = 2.9544509200229996e-18
Info: cfl dt = 0.0026824347485016795 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.4125e+04 | 13440 | 2.096e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.39352513655064 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8627010288168708, dt = 0.0026824347485016795 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (0.9%)
patch tree reduce : 1342.00 ns (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 632.33 us (97.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8810267857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.993305725979288e-12, max = 9.997918321504967e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.3607979073064945e-18,5.126949862035032e-19)
sum a = (7.858128760502292e-18,-8.27978445009022e-18,5.203614532869201e-18)
sum e = 1.1963623857829295
sum de = 1.1736488517155585e-17
Info: cfl dt = 0.0026679140869717323 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6248e+04 | 13440 | 2.029e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.599818461726144 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8653834635653725, dt = 0.0026679140869717323 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1263.00 ns (0.3%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 362.68 us (95.1%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 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.8796875000000002
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9823093103763966e-12, max = 9.979451816932405e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.514127248974832e-18,4.0967683477008905e-19)
sum a = (3.202666624097398e-17,7.74313175425104e-18,2.9199656503964005e-17)
sum e = 1.196362382897287
sum de = -3.63207727782644e-18
Info: cfl dt = 0.002723357500182052 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6053e+04 | 13440 | 2.035e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.202566927160035 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8680513776523443, dt = 0.002723357500182052 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1192.00 ns (0.3%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 329.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.8654761904761907
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9903966347278336e-12, max = 9.9955741440094e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.3320486557436814e-18,5.309627398007075e-19)
sum a = (1.2247181165758451e-17,1.6866227583517116e-18,-9.140584957300121e-17)
sum e = 1.1963624300203815
sum de = 9.920449878242366e-18
Info: cfl dt = 0.0026717703686556173 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6449e+04 | 13440 | 2.023e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.472421079366256 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8707747351525263, dt = 0.0026717703686556173 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 571.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.3%)
LB compute : 320.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 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.8607886904761908
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.954266284414686e-12, max = 9.975565310174e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-7.57063624487416e-19,1.1948907680794263e-19)
sum a = (3.1815838396180015e-18,1.3799640750150368e-18,4.423431718583356e-17)
sum e = 1.1963624082970952
sum de = 2.5804011705155006e-17
Info: cfl dt = 0.0026966269685834415 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6159e+04 | 13440 | 2.031e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.3467022200455 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.873446505521182, dt = 0.0026966269685834415 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1362.00 ns (0.3%)
gen split merge : 681.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.3%)
LB compute : 447.40 us (95.8%)
LB move op cnt : 0
LB apply : 3.26 us (0.7%)
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.8606398809523808
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.992151167084516e-12, max = 9.997495798131231e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-8.433113791758558e-19,4.20457804106144e-19)
sum a = (-3.833233541708435e-18,-4.339220369213949e-17,4.1895745254020967e-17)
sum e = 1.1963624412000133
sum de = -9.486769009248164e-18
Info: cfl dt = 0.002699158694724676 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5740e+04 | 13440 | 2.044e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.48493910615207 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8761431324897654, dt = 0.002699158694724676 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.5%)
patch tree reduce : 1393.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 : 356.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8645089285714285
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9572684166434475e-12, max = 9.983668246129414e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4326710362135277e-18,5.198822990942066e-19)
sum a = (-2.4360199157557108e-17,-1.0043071879276101e-17,-1.4521965695666052e-17)
sum e = 1.1963624668923585
sum de = -1.0842021724855044e-19
Info: cfl dt = 0.0026842975940962726 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5584e+04 | 13440 | 2.049e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.416400233119525 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8788422911844901, dt = 0.001157708815510361 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.08 us (1.8%)
patch tree reduce : 1403.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 363.54 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.62 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.8727678571428572
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0758644910554725e-12, max = 9.26688784429718e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-9.726830112085156e-19,4.354313726284426e-19)
sum a = (2.4628525505476698e-17,-9.199760500100245e-18,1.0494674705908625e-16)
sum e = 1.1963617243220466
sum de = 4.2825985813177425e-18
Info: cfl dt = 0.0026819984042482886 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6753e+04 | 13440 | 2.013e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.700127030445817 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 388 [SPH][rank=0]
Info: time since start : 726.581861162 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1919.06 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1917.27 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1851.73 ms [sph::CartesianRender][rank=0]
---------------- t = 0.8800000000000004, dt = 0.0026819984042482886 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.62 us (1.6%)
patch tree reduce : 1473.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 593.41 us (96.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8790178571428569
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9873369211162624e-12, max = 9.97792000335463e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-1.7441212614773382e-18,7.7892503452997195e-19)
sum a = (-2.2041092864823505e-17,3.4805760558712595e-17,-9.242884377444464e-18)
sum e = 1.1963624777858366
sum de = -2.3310346708438345e-18
Info: cfl dt = 0.002673156069484879 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5520e+04 | 13440 | 2.051e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.06940612262049 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8826819984042488, dt = 0.002673156069484879 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.3%)
patch tree reduce : 1283.00 ns (0.3%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 378.19 us (95.6%)
LB move op cnt : 0
LB apply : 3.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8791666666666664
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9604681377244246e-12, max = 9.995387282977272e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.3224655718894102e-18,6.067289965235383e-19)
sum a = (-2.3804380294009384e-17,-2.6832634791959047e-17,-2.792510635134595e-17)
sum e = 1.1963625244725862
sum de = -1.2847795743953228e-17
Info: cfl dt = 0.0027063739520592858 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6378e+04 | 13440 | 2.025e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.52845099127303 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8853551544737337, dt = 0.0027063739520592858 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1223.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 342.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.879613095238095
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9539831244897955e-12, max = 9.999955918150409e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.1547616044396662e-18,4.983203604220967e-19)
sum a = (-3.292747612327546e-17,-2.491601802110483e-17,2.2867633847254384e-17)
sum e = 1.1963625941467502
sum de = 2.596664203102783e-17
Info: cfl dt = 0.0026881782277329517 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6490e+04 | 13440 | 2.021e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.200354069562465 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.888061528425793, dt = 0.0026881782277329517 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1482.00 ns (0.4%)
gen split merge : 622.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 341.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 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.8777529761904759
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9860291676106e-12, max = 9.999816145704813e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.5524595843919163e-18,6.282909351956483e-19)
sum a = (-4.5117158785908283e-17,-1.433629344598955e-17,-3.3995989973026686e-18)
sum e = 1.196362630300978
sum de = 2.6020852139652106e-18
Info: cfl dt = 0.0027047789226964758 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6865e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.14616528561401 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8907497066535259, dt = 0.0027047789226964758 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1543.00 ns (0.5%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.4%)
LB compute : 320.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.8659970238095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9591951998671547e-12, max = 9.988209481865135e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.0924715593869042e-18,5.938517275943615e-19)
sum a = (1.284133236472326e-18,-1.4566287458492054e-17,-1.4456081994167937e-17)
sum e = 1.196362689395254
sum de = -1.6046192152785466e-17
Info: cfl dt = 0.002695455015066396 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6892e+04 | 13440 | 2.009e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.46273413422753 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8934544855762224, dt = 0.002695455015066396 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1193.00 ns (0.3%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 342.71 us (95.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 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.8658482142857142
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.980606061311397e-12, max = 9.999221224143303e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.0062238046984643e-18,5.312622111711535e-19)
sum a = (-1.2649670687637837e-17,-2.25394132252456e-17,1.685185295773571e-17)
sum e = 1.1963627245958568
sum de = 1.1817803680091998e-17
Info: cfl dt = 0.0026863483021002223 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6802e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.23105656331204 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8961499405912888, dt = 0.0026863483021002223 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1463.00 ns (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.4%)
LB compute : 332.98 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.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.866220238095238
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9908421962164602e-12, max = 9.996133798116325e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-8.576860049572625e-19,6.20205208193607e-19)
sum a = (-4.185891027545612e-17,-5.75751677964607e-17,-3.104440014591119e-17)
sum e = 1.1963627514837254
sum de = 1.8810907692623502e-17
Info: cfl dt = 0.0026792714529593285 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6933e+04 | 13440 | 2.008e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.161846246213415 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.8988362888933891, dt = 0.001163711106611398 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1212.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.4%)
LB compute : 346.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8662946428571425
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0301708939949645e-12, max = 9.519876485146857e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.1020546432411752e-18,5.206309775203214e-19)
sum a = (-2.924757192323536e-17,-6.976485045909353e-17,-2.799218793832585e-17)
sum e = 1.1963618940822478
sum de = 2.0057740190981832e-18
Info: cfl dt = 0.002677428968088157 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8071e+04 | 13440 | 1.974e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.218431381561718 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 396 [SPH][rank=0]
Info: time since start : 735.283414715 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1953.87 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1950.45 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1877.40 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9000000000000005, dt = 0.002677428968088157 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.46 us (1.4%)
patch tree reduce : 1483.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.2%)
LB compute : 640.91 us (96.3%)
LB move op cnt : 0
LB apply : 4.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 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.875372023809524
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9791874350802733e-12, max = 9.983948415142789e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.3224655718894102e-18,4.367789937954494e-19)
sum a = (7.585969179040994e-17,-3.909898212542604e-18,-1.178719314075344e-17)
sum e = 1.1963627567370605
sum de = 1.3823577699190182e-17
Info: cfl dt = 0.002672491796199251 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5933e+04 | 13440 | 2.038e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.28487909696212 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9026774289680887, dt = 0.002672491796199251 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1302.00 ns (0.4%)
gen split merge : 662.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 339.80 us (94.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 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.8764136904761906
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9696686153614205e-12, max = 9.986072358949885e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.715372009914525e-18,4.2300331075493477e-19)
sum a = (1.0004739543859017e-17,1.5639592850170416e-17,-2.5725788606790738e-17)
sum e = 1.196362777595863
sum de = 1.360673726469308e-17
Info: cfl dt = 0.002690012424196162 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7039e+04 | 13440 | 2.005e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.98991672098932 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9053499207642879, dt = 0.002690012424196162 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1312.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1422.00 ns (0.4%)
LB compute : 321.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 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.876190476190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9778153433603298e-12, max = 9.997236709428227e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.3224655718894102e-18,3.512799175331246e-19)
sum a = (-8.89310181676357e-18,-4.093893422544609e-17,-1.536647496032369e-17)
sum e = 1.1963628010518432
sum de = -2.4665599424045226e-17
Info: cfl dt = 0.0026613622625106556 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7268e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.469063244764186 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9080399331884841, dt = 0.0026613622625106556 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1323.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 : 338.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
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.8752232142857141
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0013144792268883e-12, max = 9.981710983228193e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.8974506031456757e-18,3.166909742466149e-19)
sum a = (-1.9434494056461766e-17,1.9741152739798444e-17,1.4159006394685533e-18)
sum e = 1.1963627866360307
sum de = 1.3660947373317356e-17
Info: cfl dt = 0.0026376198841104427 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6991e+04 | 13440 | 2.006e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.75521095405523 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9107012954509948, dt = 0.0026376198841104427 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1483.00 ns (0.4%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 359.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 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.867708333333333
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.001126621766907e-12, max = 9.9840332181822e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.777662054967287e-18,3.4768626108777293e-19)
sum a = (5.726850911312403e-17,4.5998802500501224e-18,-6.97888081687292e-18)
sum e = 1.1963627761310685
sum de = 6.071532165918825e-18
Info: cfl dt = 0.0026185861005048744 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6658e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.09416462021407 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9133389153351053, dt = 0.0026185861005048744 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1102.00 ns (0.3%)
gen split merge : 671.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 352.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 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.8680803571428566
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9660617233172876e-12, max = 9.977831150647168e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.0986953640853683e-18,3.057602692253369e-19)
sum a = (7.858128760502292e-18,3.909898212542604e-17,-4.170078939186064e-17)
sum e = 1.1963627710866267
sum de = 1.485356976305141e-17
Info: cfl dt = 0.0026881354068591158 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7525e+04 | 13440 | 1.990e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.36273398889945 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9159575014356102, dt = 0.0026881354068591158 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1363.00 ns (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1583.00 ns (0.4%)
LB compute : 334.71 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.24 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.8683035714285712
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9718599197627193e-12, max = 9.987576026789926e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.4470456619949344e-18,1.5572511263190519e-19)
sum a = (-6.458998517778714e-17,-6.244337439443041e-17,1.9048774931327358e-17)
sum e = 1.1963628367241943
sum de = -8.673617379884035e-19
Info: cfl dt = 0.002683472435065534 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7361e+04 | 13440 | 1.995e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.502371329092725 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9186456368424692, dt = 0.0013543631575312354 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1483.00 ns (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 311.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8683035714285712
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.1518029184084088e-12, max = 9.740350225464547e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.7537043453316094e-18,2.5395172213818386e-19)
sum a = (3.5687404273305536e-17,-8.471446127175642e-18,8.51097634807451e-17)
sum e = 1.196362059021505
sum de = 2.3310346708438345e-17
Info: cfl dt = 0.002673400050426137 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7499e+04 | 13440 | 1.991e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.487042102433588 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 404 [SPH][rank=0]
Info: time since start : 743.8686400910001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1947.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1956.72 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1904.35 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9200000000000005, dt = 0.002673400050426137 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.25 us (1.7%)
patch tree reduce : 1263.00 ns (0.2%)
gen split merge : 591.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.2%)
LB compute : 564.56 us (96.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 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.8751488095238091
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9933308663324853e-12, max = 9.993573146601706e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229106,-1.8782844354371334e-18,5.2946538294847765e-19)
sum a = (-1.2266347333466993e-18,1.5639592850170416e-17,5.718705290036272e-17)
sum e = 1.1963628289403836
sum de = 5.854691731421724e-18
Info: cfl dt = 0.002682043715195543 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6582e+04 | 13440 | 2.019e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.678929725171876 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9226734000504266, dt = 0.002682043715195543 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1603.00 ns (0.5%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 332.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8805059523809522
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9595185541499806e-12, max = 9.993315608620373e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.5332934166833741e-18,6.363766621976895e-19)
sum a = (-2.4954350356521914e-17,-1.3799640750150367e-17,6.52104898573512e-17)
sum e = 1.1963628575430487
sum de = 1.2793585635328952e-17
Info: cfl dt = 0.0026714684851303697 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6869e+04 | 13440 | 2.010e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.03903615907933 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9253554437656222, dt = 0.0026714684851303697 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1422.00 ns (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.4%)
LB compute : 321.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 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.8798363095238089
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9967038896741695e-12, max = 9.974199568154286e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.3224655718894102e-18,8.114176782233599e-19)
sum a = (2.4954350356521914e-17,-2.905591024614994e-17,7.581177637113858e-17)
sum e = 1.1963628628109475
sum de = 1.2414114874959026e-17
Info: cfl dt = 0.0026643591326737325 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6810e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.807682628589845 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9280269122507525, dt = 0.0026643591326737325 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1382.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 320.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.3%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.87641369047619
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9966056379921917e-12, max = 9.994978003060955e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.5860003778818652e-18,1.0325772852977098e-18)
sum a = (1.778620363352714e-17,-3.4115778521205075e-18,-1.8413895625981896e-17)
sum e = 1.1963628727276088
sum de = -2.1141942363467336e-18
Info: cfl dt = 0.0026527935255394987 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6766e+04 | 13440 | 2.013e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.64880410178647 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9306912713834262, dt = 0.0026527935255394987 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 342.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.7%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.863392857142857
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.977531163818331e-12, max = 9.975501137517034e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.103486906012504e-18,8.801463577407104e-19)
sum a = (1.6099580875175429e-18,-3.814067373999893e-17,7.407723819351552e-18)
sum e = 1.1963628846262484
sum de = 1.2739375526704677e-17
Info: cfl dt = 0.0026462903982028955 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7118e+04 | 13440 | 2.002e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.692022170047714 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9333440649089657, dt = 0.0026462903982028955 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1303.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 : 318.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8625744047619046
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.96690749973491e-12, max = 9.982180262173408e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.060363028668284e-18,9.325538475687554e-19)
sum a = (-2.6564308444039458e-17,-2.3727715623175214e-17,-3.776693346968236e-17)
sum e = 1.1963629095508994
sum de = 2.656295322589486e-18
Info: cfl dt = 0.0026445962409339884 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6809e+04 | 13440 | 2.012e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.355934257825744 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9359903553071686, dt = 0.0026445962409339884 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.9%)
patch tree reduce : 1212.00 ns (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 326.74 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.28 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.862425595238095
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.004426317906469e-12, max = 9.999325558231784e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.194526202628079e-18,7.648498801190112e-19)
sum a = (-1.9932814416883864e-17,-2.966922761282329e-17,-2.931465351021526e-17)
sum e = 1.19636295066177
sum de = -2.5153490401663703e-17
Info: cfl dt = 0.0026473587349010778 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6653e+04 | 13440 | 2.016e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.21560568385911 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9386349515481025, dt = 0.0013650484518979988 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1372.00 ns (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 330.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.862202380952381
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.054461318618365e-12, max = 9.99697790549582e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.141819241429588e-18,7.534699680420643e-19)
sum a = (-8.969766487597738e-18,1.5217937160582487e-17,7.539491222347779e-18)
sum e = 1.1963622045699864
sum de = 3.2526065174565133e-18
Info: cfl dt = 0.0027040786173098456 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7335e+04 | 13440 | 1.996e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.62025692271498 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 412 [SPH][rank=0]
Info: time since start : 752.4972095730001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.91 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1929.60 ms [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1853.05 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9400000000000005, dt = 0.0027040786173098456 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance 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.15 us (1.7%)
patch tree reduce : 1213.00 ns (0.2%)
gen split merge : 601.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 559.50 us (95.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.6%)
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.865029761904762
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0077238226450867e-12, max = 9.999401030771618e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.141819241429588e-18,7.792245059004179e-19)
sum a = (-2.1351110827315987e-17,-4.436967824527514e-17,-6.68228437158323e-17)
sum e = 1.1963630590058265
sum de = 1.6263032587282567e-18
Info: cfl dt = 0.0026938680248934505 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6037e+04 | 13440 | 2.035e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.831254283071786 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9427040786173103, dt = 0.0026938680248934505 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1272.00 ns (0.4%)
gen split merge : 632.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1383.00 ns (0.4%)
LB compute : 332.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 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.8765625
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.959772489188271e-12, max = 9.970956338112736e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.4149371312763144e-18,5.102992152399355e-19)
sum a = (3.700986984519494e-17,2.09486213054366e-17,2.4855524804274744e-17)
sum e = 1.1963631426066348
sum de = -1.5178830414797062e-18
Info: cfl dt = 0.0026969341399964044 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7775e+04 | 13440 | 1.983e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.904291269399025 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9453979466422038, dt = 0.0026969341399964044 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1182.00 ns (0.3%)
gen split merge : 551.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 333.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 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.8811011904761903
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9953612910252358e-12, max = 9.997470607513142e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.232858538045164e-18,6.962709362868838e-19)
sum a = (3.4393687952978937e-17,-3.745069170249141e-17,1.0546183781625334e-17)
sum e = 1.1963632247721623
sum de = 0
Info: cfl dt = 0.0027237860091619847 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7810e+04 | 13440 | 1.982e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.98539454688334 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9480948807822002, dt = 0.0027237860091619847 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1472.00 ns (0.4%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 345.91 us (95.1%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8779761904761902
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.008095280365471e-12, max = 9.897767974105787e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.9693237320527087e-18,7.013619495844653e-19)
sum a = (-5.055076733127999e-18,4.7052941724471043e-17,6.758469888224685e-18)
sum e = 1.1963633276441823
sum de = 1.1926223897340549e-18
Info: cfl dt = 0.0027023577248522297 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8299e+04 | 13440 | 1.968e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.830296849787835 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9508186667913622, dt = 0.0027023577248522297 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1352.00 ns (0.4%)
gen split merge : 531.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 328.70 us (94.9%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.8695684523809522
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9900912042881345e-12, max = 9.9787639761298e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-1.926199854708489e-18,7.187312890703316e-19)
sum a = (1.549584659235635e-17,4.676544920884291e-17,-3.170802870281947e-17)
sum e = 1.1963633767534319
sum de = 2.233456475320139e-17
Info: cfl dt = 0.0026839824458097625 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8109e+04 | 13440 | 1.973e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.30014563473345 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9535210245162145, dt = 0.0026839824458097625 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1172.00 ns (0.3%)
gen split merge : 541.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 331.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.8676339285714283
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.929989979651629e-12, max = 9.944425335435918e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.0028645255426574e-18,5.908570138899018e-19)
sum a = (3.714403301915474e-17,-1.5639592850170416e-17,4.5720893068727365e-17)
sum e = 1.1963634134660481
sum de = -2.0491421059976034e-17
Info: cfl dt = 0.002726341128091991 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8149e+04 | 13440 | 1.972e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.99411148990237 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9562050069620243, dt = 0.002726341128091991 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1242.00 ns (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 320.87 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 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.866443452380952
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.990787081266328e-12, max = 9.92547950052494e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.0555714867411484e-18,8.139631848721506e-19)
sum a = (-2.1274446156481818e-17,-3.547657642851157e-17,-4.2520143061400823e-17)
sum e = 1.1963634993538377
sum de = 1.474514954580286e-17
Info: cfl dt = 0.0026988464989791392 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7667e+04 | 13440 | 1.986e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.41506521775684 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9589313480901163, dt = 0.001068651909884255 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1283.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 328.26 us (94.6%)
LB move op cnt : 0
LB apply : 2.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.8%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.865252976190476
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0023046393377598e-12, max = 9.993922012923624e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.165776951065266e-18,6.453608033110686e-19)
sum a = (-5.558188635477232e-19,7.992291934462087e-18,-4.2582433106453584e-17)
sum e = 1.196362312355828
sum de = -1.8865117801247777e-17
Info: cfl dt = 0.002688861462255288 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7579e+04 | 13440 | 1.989e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.3441974866663 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 420 [SPH][rank=0]
Info: time since start : 761.173647522 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1922.02 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9600000000000005, dt = 0.002688861462255288 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.34 us (2.1%)
patch tree reduce : 2.40 us (0.4%)
gen split merge : 1403.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 2.44 us (0.4%)
LB compute : 569.98 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (78.1%)
Warning: High interface/patch volume ratio. [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
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0654954736375316e-12, max = 9.936233583740615e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.103486906012504e-18,5.387489954323028e-19)
sum a = (1.4029634762652875e-17,-1.6502070397054814e-17,7.398140735497281e-18)
sum e = 1.1963634797466478
sum de = 5.095750210681871e-18
Info: cfl dt = 0.0026639390249562165 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8290e+04 | 13440 | 1.968e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.18456876602827 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9626888614622559, dt = 0.0026639390249562165 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1162.00 ns (0.3%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 352.73 us (95.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8644345238095237
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.018903069952078e-12, max = 9.865217951978391e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-1.9693237320527087e-18,6.229004505276207e-19)
sum a = (2.5606000058612347e-17,-6.4302492662159e-17,-6.607057163327202e-17)
sum e = 1.1963634891763486
sum de = 8.673617379884035e-19
Info: cfl dt = 0.0026413878167027027 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7984e+04 | 13440 | 1.977e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.51039073439627 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9653528004872121, dt = 0.0026413878167027027 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.11 us (2.7%)
patch tree reduce : 2.26 us (0.5%)
gen split merge : 641.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 413.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 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.8746279761904763
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.950129824065542e-12, max = 9.638475477541263e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.2520247057537058e-18,3.4948308931044877e-19)
sum a = (4.944871268803882e-18,7.359808400080196e-18,-2.017239151324064e-18)
sum e = 1.196363483825831
sum de = 6.613633252161577e-18
Info: cfl dt = 0.00262089791225244 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8355e+04 | 13440 | 1.966e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.362354055601216 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9679941883039148, dt = 0.00262089791225244 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1213.00 ns (0.3%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1373.00 ns (0.4%)
LB compute : 360.17 us (95.1%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 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.8743303571428571
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0855565930289115e-12, max = 9.857733651603808e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.2424416218994346e-18,4.369287294806724e-19)
sum a = (1.5639592850170416e-17,-4.429301357444097e-17,5.2108018457599045e-17)
sum e = 1.1963634777965204
sum de = 7.589415207398531e-18
Info: cfl dt = 0.002602521046411203 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7909e+04 | 13440 | 1.979e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.67399188316492 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9706150862161672, dt = 0.002602521046411203 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1563.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 : 337.20 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.46 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.8633184523809527
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.3646175736359334e-12, max = 9.510743194993358e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.2232754541908927e-18,6.459597460519606e-19)
sum a = (3.4882425229546765e-18,-2.2041092864823503e-18,7.392870039377432e-17)
sum e = 1.1963634701929435
sum de = 2.5478751053409354e-17
Info: cfl dt = 0.002586307716599787 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7967e+04 | 13440 | 1.977e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.38008177334616 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9732176072625784, dt = 0.002586307716599787 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1202.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 321.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8650297619047616
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0495490951153436e-12, max = 9.754527468597369e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.1466107833567237e-18,8.537928771414649e-19)
sum a = (-2.5491003052361097e-17,2.798260485447158e-17,9.482461473801242e-18)
sum e = 1.1963634598140462
sum de = 2.5912431922403556e-17
Info: cfl dt = 0.002664561289507575 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7724e+04 | 13440 | 1.985e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.91635243544998 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9758039149791782, dt = 0.002664561289507575 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1162.00 ns (0.3%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.3%)
LB compute : 316.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (70.1%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8678571428571429
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.2858548495832928e-12, max = 9.848198663412824e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.0531757157775806e-18,8.045298367031025e-19)
sum a = (2.6564308444039458e-17,-1.89936721991653e-17,-9.37704755140426e-18)
sum e = 1.1963635381282591
sum de = 2.7430314963883262e-17
Info: cfl dt = 0.0026518342441254014 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8484e+04 | 13440 | 1.963e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.87843480457511 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9784684762686857, dt = 0.0015315237313148211 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.38 us (6.5%)
patch tree reduce : 1252.00 ns (0.3%)
gen split merge : 561.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 325.12 us (90.2%)
LB move op cnt : 0
LB apply : 3.02 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 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.867857142857143
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.02881662540492e-12, max = 9.781535759316512e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.2975443540614934e-18,7.57063624487416e-19)
sum a = (1.496877698037144e-17,-6.593161691738509e-18,-1.7053097718675402e-17)
sum e = 1.1963626316891571
sum de = 1.2576745200831851e-17
Info: cfl dt = 0.002647466824280411 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7926e+04 | 13440 | 1.979e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.865388559008572 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 428 [SPH][rank=0]
Info: time since start : 769.8961457700001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1977.92 ms [sph::CartesianRender][rank=0]
---------------- t = 0.9800000000000005, dt = 0.002647466824280411 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (1.7%)
patch tree reduce : 1362.00 ns (0.2%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 554.14 us (96.1%)
LB move op cnt : 0
LB apply : 3.44 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8683035714285714
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.27353336375259e-12, max = 9.511184230164044e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.3598343991142556e-18,7.033085134923641e-19)
sum a = (-3.505492073892364e-17,-2.1466107833567238e-17,-3.954219975368608e-17)
sum e = 1.1963634951585023
sum de = 2.6020852139652106e-18
Info: cfl dt = 0.0026395000554510664 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.8055e+04 | 13440 | 1.975e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.26081469321614 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.982647466824281, dt = 0.0026395000554510664 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1142.00 ns (0.3%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 352.47 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 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.86875
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.981564404845624e-12, max = 9.896127081758603e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.3694174829685268e-18,5.634553834940954e-19)
sum a = (-4.75320959171846e-18,1.3512148234522235e-17,-2.4360199157557108e-17)
sum e = 1.1963634732559179
sum de = -2.0166160408230382e-17
Info: cfl dt = 0.0026367272971865156 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.5851e+04 | 13440 | 2.041e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.557330418858676 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.985286966879732, dt = 0.0026367272971865156 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1102.00 ns (0.3%)
gen split merge : 661.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 338.37 us (94.9%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.0%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8787946428571427
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0756842658737986e-12, max = 9.323273606814508e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.0579672577047162e-18,5.336579821347213e-19)
sum a = (2.0392802441888877e-17,-3.1240853364923747e-17,5.8744304026681774e-18)
sum e = 1.1963634471097342
sum de = -1.9949319973733282e-17
Info: cfl dt = 0.002723007628674814 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.6532e+04 | 13440 | 2.020e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.98961796319836 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9879236941769186, dt = 0.002723007628674814 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1423.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 : 357.48 us (95.0%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.2%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8786458333333336
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0552118047192002e-12, max = 9.819418814625474e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229109,-2.4341032989848564e-18,5.800760445538468e-19)
sum a = (5.169115430993825e-17,-1.3416317395979524e-17,4.6008385584355497e-17)
sum e = 1.1963635026931303
sum de = 7.26415455565288e-18
Info: cfl dt = 0.002712504845108716 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7255e+04 | 13440 | 1.998e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.054097519797736 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9906467018055934, dt = 0.002712504845108716 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1333.00 ns (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 326.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.6%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8674107142857141
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.9965672687486947e-12, max = 9.89703148539275e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.1274446156481818e-18,7.609567523032136e-19)
sum a = (2.184943118773808e-17,-6.803989536532473e-17,-2.2136923703366215e-18)
sum e = 1.196363467682703
sum de = 6.5052130349130266e-18
Info: cfl dt = 0.0027435418678442053 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7294e+04 | 13440 | 1.997e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.89365371618232 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9933592066507022, dt = 0.0027435418678442053 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1332.00 ns (0.4%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 330.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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.862276785714286
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.0154961730803354e-12, max = 9.97532782638419e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.4245202151305856e-18,6.887841520257345e-19)
sum a = (1.970282040438136e-17,-2.2807739573165192e-17,-1.5907919198090007e-18)
sum e = 1.1963634733433655
sum de = -1.5829351718288365e-17
Info: cfl dt = 0.00273610525868462 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7437e+04 | 13440 | 1.993e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.558039582589934 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.9961027485185464, dt = 0.00273610525868462 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 13440
max = 13440
avg = 13440
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 1413.00 ns (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1453.00 ns (0.4%)
LB compute : 338.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.4%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8620535714285715
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 1.994332050881302e-12, max = 9.999640240495477e-07
iterations = 2
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.0807924740222911,-2.7838858596657512e-18,6.73211640762544e-19)
sum a = (8.030624269879172e-18,-1.8859509025205503e-17,-2.4494362331516902e-17)
sum e = 1.196363449164041
sum de = 8.782037597132586e-18
Info: cfl dt = 0.002732950173649657 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7320e+04 | 13440 | 1.996e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.337491893054526 (tsim/hr) [sph::Model][rank=0]
---------------- t = 0.998838853777231, dt = 0.0011611462227694158 ----------------
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 13440 min = 13440 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1462.00 ns (0.4%)
gen split merge : 601.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.4%)
LB compute : 321.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.5%)
Warning: High interface/patch volume ratio. [InterfaceGen][rank=0]
This can lead to high mpi overhead, try to increase the patch split crit
patch 0 high interf/patch volume: 1.8619047619047622
Info: smoothing length iteration converged [Smoothinglength][rank=0]
eps min = 2.012394657772068e-12, max = 9.676469456288023e-07
iterations = 1
Info: conservation infos : [sph::Model][rank=0]
sum v = (-0.08079247402229107,-2.5059764278918897e-18,6.220020364162829e-19)
sum a = (2.851925755031076e-17,-2.8749251562813265e-18,-1.928116471479343e-17)
sum e = 1.196362468603958
sum de = 3.2526065174565133e-18
Info: cfl dt = 0.0027336530435574324 cfl multiplier : 0.9999999999999997 [sph::Model][rank=0]
Info: processing rate infos : [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank | rate (N.s^-1) | Nobj | t compute (s) | MPI | alloc | mem (max) |
---------------------------------------------------------------------------------------
| 0 | 6.7221e+04 | 13440 | 1.999e-01 | 0 % | 0 % | 1.00 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.907243925741 (tsim/hr) [sph::Model][rank=0]
Info: iteration since start : 436 [SPH][rank=0]
Info: time since start : 778.7153522650001 (s) [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080 [sph::CartesianRender][rank=0]
Info: compute_slice took 1913.33 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()